Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for InMemory (0.18 sec)

  1. cmd/batch-job-common-types_gen.go

    					return
    				}
    			}
    		case "InMemory":
    			if dc.IsNil() {
    				err = dc.ReadNil()
    				if err != nil {
    					err = msgp.WrapError(err, "InMemory")
    					return
    				}
    				z.InMemory = nil
    			} else {
    				if z.InMemory == nil {
    					z.InMemory = new(bool)
    				}
    				*z.InMemory, err = dc.ReadBool()
    				if err != nil {
    					err = msgp.WrapError(err, "InMemory")
    					return
    				}
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  2. cmd/batch-job-common-types.go

    type BatchJobSnowball struct {
    	line, col   int
    	Disable     *bool   `yaml:"disable" json:"disable"`
    	Batch       *int    `yaml:"batch" json:"batch"`
    	InMemory    *bool   `yaml:"inmemory" json:"inmemory"`
    	Compress    *bool   `yaml:"compress" json:"compress"`
    	SmallerThan *string `yaml:"smallerThan" json:"smallerThan"`
    	SkipErrs    *bool   `yaml:"skipErrs" json:"skipErrs"`
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/curl/io/ContentOutputStreamTest.java

    import java.io.File;
    import java.io.IOException;
    
    import org.codelibs.curl.Curl;
    import org.junit.Test;
    
    public class ContentOutputStreamTest {
    
        @Test
        public void inMemory() throws IOException {
            ContentOutputStream cos = new ContentOutputStream(10, Curl.tmpDir);
            cos.write(new byte[] { 0, 1, 2, 3, 4 });
            assertFalse(cos.done);
            assertTrue(cos.isInMemory());
    Registered: Wed Jun 12 08:29:43 UTC 2024
    - Last Modified: Mon Nov 14 21:05:19 UTC 2022
    - 2K bytes
    - Viewed (0)
  4. cmd/batch-handlers.go

    	input := make(chan minio.SnowballObject, 1)
    	opts := minio.SnowballOptions{
    		Opts:     minio.PutObjectOptions{},
    		InMemory: *r.Source.Snowball.InMemory,
    		Compress: *r.Source.Snowball.Compress,
    		SkipErrs: *r.Source.Snowball.SkipErrs,
    	}
    
    	go func() {
    		defer xioutil.SafeClose(input)
    
    		for _, entry := range entries {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  5. pilot/pkg/config/file/store.go

    var _ model.ConfigStore = &KubeSource{}
    
    // NewKubeSource returns a new in-memory Source that works with Kubernetes resources.
    func NewKubeSource(schemas collection.Schemas) *KubeSource {
    	name := fmt.Sprintf("kube-inmemory-%d", inMemoryKubeNameDiscriminator)
    	inMemoryKubeNameDiscriminator++
    
    	return &KubeSource{
    		name:    name,
    		schemas: &schemas,
    		inner:   memory.MakeSkipValidation(schemas),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top