Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for EqualFold (0.19 sec)

  1. cmd/site-replication.go

    		if err != nil {
    			return err
    		}
    	}
    
    	for dID, bStatus := range bs {
    		if latestExpLCConfig != nil && bStatus.meta.ExpiryLCConfig != nil && strings.EqualFold(*latestExpLCConfig, *bStatus.meta.ExpiryLCConfig) {
    			continue
    		}
    
    		finalConfigData, err := mergeWithCurrentLCConfig(ctx, bucket, latestExpLCConfig, lastUpdate)
    		if err != nil {
    			return wrapSRErr(err)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 184.2K bytes
    - Viewed (1)
  2. cmd/object-handlers.go

    			enqueueTransitionImmediate(objInfo, lcEventSrc_s3PutObject)
    			os.Sweep()
    		}
    
    		return nil
    	}
    
    	var opts untarOptions
    	opts.ignoreDirs = strings.EqualFold(r.Header.Get(xhttp.MinIOSnowballIgnoreDirs), "true")
    	opts.ignoreErrs = strings.EqualFold(r.Header.Get(xhttp.MinIOSnowballIgnoreErrors), "true")
    	opts.prefixAll = r.Header.Get(xhttp.MinIOSnowballPrefix)
    	if opts.prefixAll != "" {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu May 02 20:15:54 GMT 2024
    - 125.2K bytes
    - Viewed (0)
  3. cmd/erasure-object.go

    		return toObjectErr(errMethodNotAllowed, bucket, object)
    	}
    	// verify that the object queued for transition is identical to that on disk.
    	if !opts.MTime.Equal(fi.ModTime) || !strings.EqualFold(opts.Transition.ETag, extractETag(fi.Metadata)) {
    		return toObjectErr(errFileNotFound, bucket, object)
    	}
    	// if object already transitioned, return
    	if fi.TransitionStatus == lifecycle.TransitionComplete {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun May 05 16:56:21 GMT 2024
    - 77.2K bytes
    - Viewed (2)
  4. cmd/bucket-replication.go

    	replicateAll      replicationAction = "all"
    )
    
    // matches k1 with all keys, returns 'true' if one of them matches
    func equals(k1 string, keys ...string) bool {
    	for _, k2 := range keys {
    		if strings.EqualFold(k1, k2) {
    			return true
    		}
    	}
    	return false
    }
    
    // returns replicationAction by comparing metadata between source and target
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  5. api/go1.txt

    pkg bytes, func Compare([]uint8, []uint8) int
    pkg bytes, func Contains([]uint8, []uint8) bool
    pkg bytes, func Count([]uint8, []uint8) int
    pkg bytes, func Equal([]uint8, []uint8) bool
    pkg bytes, func EqualFold([]uint8, []uint8) bool
    pkg bytes, func Fields([]uint8) [][]uint8
    pkg bytes, func FieldsFunc([]uint8, func(int32) bool) [][]uint8
    pkg bytes, func HasPrefix([]uint8, []uint8) bool
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
Back to top