Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for rl (0.12 sec)

  1. cmd/site-replication.go

    			return []byte{}, err
    		}
    		for _, rl := range cfg.Rules {
    			newRMap[rl.ID] = rl
    		}
    		xmlName = cfg.XMLName
    	}
    
    	// check if current expiry rules are there in new one. if not remove the expiration
    	// part of rule as they may have been removed from latest updated one
    	for id, rl := range rMap {
    		if !rl.Expiration.IsNull() || !rl.NoncurrentVersionExpiration.IsNull() {
    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/bucket-metadata-sys.go

    			if err := xml.Unmarshal(meta.LifecycleConfigXML, &lcCfg); err != nil {
    				return updatedAt, err
    			}
    			// find a single expiry rule set the flag
    			for _, rl := range lcCfg.Rules {
    				if !rl.Expiration.IsNull() || !rl.NoncurrentVersionExpiration.IsNull() {
    					expiryRuleRemoved = true
    					break
    				}
    			}
    		}
    
    		// Form empty ILM details with `ExpiryUpdatedAt` field and save
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 19.8K bytes
    - Viewed (0)
  3. doc/go_spec.html

    var s int = complex(1, 0)          // untyped complex constant 1 + 0i can be converted to int
    _ = complex(1, 2<<s)               // illegal: 2 assumes floating-point type, cannot shift
    var rl = real(c64)                 // float32
    var im = imag(a)                   // float64
    const c = imag(b)                  // untyped constant -1.4
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top