Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for smallerThan (0.09 sec)

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

    					return
    				}
    			}
    		case "SmallerThan":
    			if dc.IsNil() {
    				err = dc.ReadNil()
    				if err != nil {
    					err = msgp.WrapError(err, "SmallerThan")
    					return
    				}
    				z.SmallerThan = nil
    			} else {
    				if z.SmallerThan == nil {
    					z.SmallerThan = new(string)
    				}
    				*z.SmallerThan, err = dc.ReadString()
    				if err != nil {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Dec 02 10:51:33 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  2. cmd/batch-job-common-types.go

    	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"`
    }
    
    var _ yaml.Unmarshaler = &BatchJobSnowball{}
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. cmd/batch-replicate_test.go

    #      batch: 100 # upto this many objects per archive
    #      inmemory: true # indicates if the archive must be staged locally or in-memory
    #      compress: false # S2/Snappy compressed archive
    #      smallerThan: 5MiB # create archive for all objects smaller than 5MiB
    #      skipErrs: false # skips any source side read() errors
    
      # target where the objects must be replicated
      target:
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 01 12:53:30 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. cmd/batch-handlers.go

    				})
    				if err != nil {
    					batchLogOnceIf(ctx, err, job.ID+"miniogo.New")
    					return
    				}
    
    				// Already validated before arriving here
    				smallerThan, _ := humanize.ParseBytes(*r.Source.Snowball.SmallerThan)
    
    				batch := make([]ObjectInfo, 0, *r.Source.Snowball.Batch)
    				writeFn := func(batch []ObjectInfo) {
    					if len(batch) > 0 {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Oct 18 15:32:09 UTC 2024
    - 62.2K bytes
    - Viewed (0)
Back to top