Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,910 for nvalid (0.11 sec)

  1. pkg/apis/node/validation/validation_test.go

    		scheduling: &node.Scheduling{},
    	}, {
    		name: "invalid nodeSelector",
    		scheduling: &node.Scheduling{
    			NodeSelector: map[string]string{"not a valid key!!!": "nope"},
    		},
    		expectErrs: 1,
    	}, {
    		name: "invalid toleration",
    		scheduling: &node.Scheduling{
    			Tolerations: []core.Toleration{{
    				Key:      "valid",
    				Operator: core.TolerationOpExists,
    				Effect:   core.TaintEffectNoSchedule,
    			}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  2. pkg/util/flag/flags_test.go

    		},
    		{
    			desc:      "invalid input with invalid limit",
    			argc:      "blah --reserved-memory=0:memory=",
    			expectVal: nil,
    			expectErr: true,
    		},
    		{
    			desc:      "invalid input with invalid memory type",
    			argc:      "blah --reserved-memory=0:type=1Gi",
    			expectVal: nil,
    			expectErr: true,
    		},
    		{
    			desc:      "invalid input with invalid quantity",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 14 10:45:23 UTC 2021
    - 8.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/RuleDefinitionRuleExtractorTest.groovy

    - Method broken3(java.lang.String) is not a valid rule method: A method annotated with @Rules must have void return type.
    - Method broken3(java.lang.String) is not a valid rule method: A method annotated with @Rules must have at least two parameters
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/argument-sharding-invalid.mlir

    Adrian Kuegel <******@****.***> 1648469008 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 364 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/testdata/invalid-configs/invalid-aes-gcm.yaml

    Rita Zhang <******@****.***> 1677726350 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 00:36:07 UTC 2023
    - 158 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/testdata/invalid-configs/kms/invalid-config-type.yaml

    Rita Zhang <******@****.***> 1677726350 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 00:36:07 UTC 2023
    - 269 bytes
    - Viewed (0)
  7. pilot/pkg/model/validation_test.go

    				},
    			},
    		},
    	}
    	for _, c := range cases {
    		t.Run(c.name, func(t *testing.T) {
    			if got := c.instance.Validate(); (got == nil) != c.valid {
    				t.Fatalf("%s failed: got valid=%v but wanted valid=%v: %v", c.name, got == nil, c.valid, got)
    			}
    		})
    	}
    }
    
    func TestServiceValidate(t *testing.T) {
    	ports := PortList{
    		{Name: "http", Port: 80, Protocol: protocol.HTTP},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 23 19:35:35 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/connection/ToolingParameterProxyTest.groovy

        }
    
        def "returns parameter invalid when it is not an interface"() {
            when:
            ToolingParameterProxy.validateParameter(InvalidParameter6)
    
            then:
            IllegalArgumentException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. pkg/proxy/util/utils.go

    		return true
    	}
    	return false
    }
    
    // AddressSet validates the addresses in the slice using the "isValid" function.
    // Addresses that pass the validation are returned as a string Set.
    func AddressSet(isValid func(ip net.IP) bool, addrs []net.Addr) sets.Set[string] {
    	ips := sets.New[string]()
    	for _, a := range addrs {
    		var ip net.IP
    		switch v := a.(type) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ModelRuleValidationIntegrationTest.groovy

            and:
            failure.assertHasCause("Failed to apply plugin class 'MyPlugin'")
            failure.assertHasCause('''Type MyPlugin.Rules is not a valid rule source:
    - Method strings() is not a valid rule method: The declared model element path 'foo. bar' is not a valid path: Model path 'foo. bar' is invalid due to invalid name component.''')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top