Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for otherNull (0.3 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradleModuleMetadataParserTest.groovy

                        "name": "file",
                        "url": "file",
                        "otherString": "string",
                        "otherNumber": 123,
                        "otherBoolean": true,
                        "otherNull": null,
                        "otherObject": { "a": 1, "b": "ignore-me", "c": [], "d": { } },
                        "otherArray": [ "a", 123, false, [], null, { } ]
                    }]
                }
            ]
        }
    '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 38K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/CompositeTestResults.java

        public String getUrlTo(CompositeTestResults model) {
            String otherUrl = model.getBaseUrl();
            String thisUrl = getBaseUrl();
    
            int maxPos = Math.min(thisUrl.length(), otherUrl.length());
            int endPrefix = 0;
            while (endPrefix < maxPos) {
                int endA = thisUrl.indexOf('/', endPrefix);
                int endB = otherUrl.indexOf('/', endPrefix);
                if (endA != endB || endA < 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. 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)
  4. 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