Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 5,714 for nvalid (0.14 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

            name        | message
            'invalid1'  | "In version catalog libs, on alias 'module' notation 'foo' is not a valid dependency notation"
            'invalid2'  | "In version catalog libs, on alias 'module' module 'foo' is not a valid module notation."
            'invalid3'  | "Name for 'module' must not be empty"
            'invalid4'  | "Group for 'module' must not be empty"
            'invalid5'  | "Version for 'module' must not be empty"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. pkg/webhooks/validation/server/server_test.go

    				Object:    runtime.RawExtension{Raw: valid},
    				Operation: kube.Create,
    			},
    			allowed: true,
    		},
    		{
    			name:  "valid update",
    			admit: wh.validate,
    			in: &kube.AdmissionRequest{
    				Kind:      metav1.GroupVersionKind{Kind: collections.Mock.Kind()},
    				Object:    runtime.RawExtension{Raw: valid},
    				Operation: kube.Update,
    			},
    			allowed: true,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 01 01:34:15 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  3. internal/bucket/encryption/bucket-sse-config_test.go

    			expectedErr:    nil,
    			shouldPass:     true,
    			expectedConfig: actualKMSConfig,
    			keyID:          "my-minio-key",
    		},
    		// 3. Invalid - more than one rule
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Aug 16 18:28:30 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  4. pkg/apis/resource/validation/validation_resourceslice_test.go

    		},
    		"invalid-name-update": {
    			oldResourceSlice: validResourceSlice,
    			update: func(slice *resource.ResourceSlice) *resource.ResourceSlice {
    				slice.Name += "-update"
    				return slice
    			},
    			wantFailures: field.ErrorList{field.Invalid(field.NewPath("metadata", "name"), name+"-update", "field is immutable")},
    		},
    		"invalid-update-nodename": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. platforms/software/resources-s3/src/test/groovy/org/gradle/internal/resource/transport/aws/s3/S3ConnectionPropertiesTest.groovy

        }
    
        def "should report invalid uri"() {
            when:
            s3ConnectionProperties.configureEndpoint('httpdasd%:/ads')
            then:
            def ex = thrown(IllegalArgumentException)
            ex.message == "System property [org.gradle.s3.endpoint=httpdasd%:/ads]  must be a valid URI"
        }
    
        def "should allow case insensitive schemes"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. pkg/apis/admissionregistration/validation/validation_test.go

    		expectedError: ``,
    	}, {
    		name: "should pass on invalid AdmissionReviewVersion with invalid previous versions",
    		config: newValidatingWebhookConfiguration([]admissionregistration.ValidatingWebhook{{
    			Name:                    "webhook.k8s.io",
    			ClientConfig:            validClientConfig,
    			SideEffects:             &unknownSideEffect,
    			AdmissionReviewVersions: []string{"invalid-v1", "invalid-v2"},
    		},
    		}, true),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/scanner.go

    	// suffix 'i'
    	if s.ch == 'i' {
    		kind = ImagLit
    		s.nextch()
    	}
    
    	s.setLit(kind, ok) // do this now so we can use s.lit below
    
    	if kind == IntLit && invalid >= 0 && ok {
    		s.errorAtf(invalid, "invalid digit %q in %s literal", s.lit[invalid], baseName(base))
    		ok = false
    	}
    
    	if digsep&2 != 0 && ok {
    		if i := invalidSep(s.lit); i >= 0 {
    			s.errorAtf(i, "'_' must separate successive digits")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/library/ip_test.go

    			expr:         `isIP("192.168.0.1.0")`,
    			expectResult: falseVal,
    		},
    		{
    			name:         "ip.isCanonical valid ipv4",
    			expr:         `ip.isCanonical("127.0.0.1")`,
    			expectResult: trueVal,
    		},
    		{
    			name:             "ip.isCanonical invalid ipv4",
    			expr:             `ip.isCanonical("127.0.0.1.0")`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 12:03:07 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishIdentifierValidationIntegTest.groovy

            failure.assertHasCause "Failed to publish publication 'maven' to repository 'maven'"
            failure.assertHasCause "Invalid publication 'maven': groupId cannot be empty"
        }
    
        def "fails with reasonable error message for invalid #invalidComponent name"() {
            settingsFile << "rootProject.name = 'invalid'"
            buildFile << """
                apply plugin: 'maven-publish'
                apply plugin: 'java'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. pkg/apis/resource/validation/validation_resourceclass_test.go

    			class:        testClass(goodName, badName),
    		},
    		"invalid-qualified-driver-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top