Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 5,714 for nvalid (0.38 sec)

  1. istioctl/pkg/proxyconfig/proxyconfig_test.go

    		},
    		{ // secret invalid
    			args:           strings.Split("secret invalid", " "),
    			expectedString: "unable to retrieve Pod: pods \"invalid\" not found",
    			wantException:  true, // "istioctl proxy-config secret invalid" should fail
    		},
    		{ // endpoint invalid
    			args:           strings.Split("endpoint invalid", " "),
    			expectedString: "unable to retrieve Pod: pods \"invalid\" not found",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 21:51:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. pkg/registry/storage/volumeattachment/strategy_test.go

    					},
    					NodeName: "valid-node",
    				},
    			},
    			true,
    		},
    		{
    			"invalid attacher name",
    			&storage.VolumeAttachment{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "foo",
    				},
    				Spec: storage.VolumeAttachmentSpec{
    					Attacher: "invalid!@#$%^&*()",
    					Source: storage.VolumeAttachmentSource{
    						PersistentVolumeName: &validPVName,
    					},
    					NodeName: "valid-node",
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/generate_invalid.txt

    // Go generate should process this file with GOPACKAGE=c
    
    //go:generate echo Success $GOPACKAGE
    package c
    // Invalid package clause, should be ignored:
    package cinvalid
    //go:generate echo Success $GOPACKAGE
    
    -- inconsistent/d.go --
    // Go file with invalid package name.
    // Go generate should ignore this file.
    
    package +d+
    //go:generate echo Fail $GOPACKAGE
    
    -- syntax/a.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 09 01:48:44 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. 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)
  5. pkg/apis/resource/validation/validation_resourceclaim_test.go

    										},
    									},
    									{
    										AllocationResultModel: resource.AllocationResultModel{}, // invalid
    									},
    								},
    							},
    						},
    					},
    				}
    				return claim
    			},
    		},
    		"invalid-duplicated-data": {
    			wantFailures: field.ErrorList{field.Invalid(field.NewPath("status", "allocation", "resourceHandles").Index(0), nil, "data and structuredData are mutually exclusive")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  6. 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)
  7. pkg/proxy/apis/config/validation/validation.go

    	if err != nil {
    		allErrs = append(allErrs, field.Invalid(fldPath, input, "must be IP:port"))
    		return allErrs
    	}
    
    	if ip := netutils.ParseIPSloppy(hostIP); ip == nil {
    		allErrs = append(allErrs, field.Invalid(fldPath, hostIP, "must be a valid IP"))
    	}
    
    	if p, err := strconv.Atoi(port); err != nil {
    		allErrs = append(allErrs, field.Invalid(fldPath, port, "must be a valid port"))
    	} else if p < 1 || p > 65535 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. 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)
  9. src/text/template/funcs.go

    		defer tmpl.muFuncs.RUnlock()
    		if fn := tmpl.execFuncs[name]; fn.IsValid() {
    			return fn, false, true
    		}
    	}
    	if fn := builtinFuncs()[name]; fn.IsValid() {
    		return fn, true, true
    	}
    	return reflect.Value{}, false, false
    }
    
    // prepareArg checks if value can be used as an argument of type argType, and
    // converts an invalid value to appropriate zero if possible.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. 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)
Back to top