Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for otherNull (0.24 sec)

  1. internal/bucket/lifecycle/lifecycle.go

    		}
    	}
    	// Make sure Rule ID is unique
    	for i := range lc.Rules {
    		if i == len(lc.Rules)-1 {
    			break
    		}
    		otherRules := lc.Rules[i+1:]
    		for _, otherRule := range otherRules {
    			if lc.Rules[i].ID == otherRule.ID {
    				return errLifecycleDuplicateID
    			}
    		}
    	}
    	return nil
    }
    
    // FilterRules returns the rules filtered by the status, prefix and tags
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy_test.go

    					Validation: &apiextensions.CustomResourceValidation{
    						OpenAPIV3Schema: &apiextensions.JSONSchemaProps{
    							Type: "object",
    							Properties: map[string]apiextensions.JSONSchemaProps{
    								"otherRule": {
    									Type: "object",
    									XValidations: apiextensions.ValidationRules{
    										{
    											Rule:            "self.isTest == true",
    											Message:         "isTest should be true.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 44.6K bytes
    - Viewed (0)
Back to top