Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for invalidSep (0.16 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode_string.go

    	_ = x[InvalidDotDotDotOperand-80]
    	_ = x[InvalidDotDotDot-81]
    	_ = x[UncalledBuiltin-82]
    	_ = x[InvalidAppend-83]
    	_ = x[InvalidCap-84]
    	_ = x[InvalidClose-85]
    	_ = x[InvalidCopy-86]
    	_ = x[InvalidComplex-87]
    	_ = x[InvalidDelete-88]
    	_ = x[InvalidImag-89]
    	_ = x[InvalidLen-90]
    	_ = x[SwappedMakeArgs-91]
    	_ = x[InvalidMake-92]
    	_ = x[InvalidReal-93]
    	_ = x[InvalidAssert-94]
    	_ = x[ImpossibleAssert-95]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. src/internal/types/errors/code_string.go

    	_ = x[MisplacedDotDotDot-79]
    	_ = x[InvalidDotDotDot-81]
    	_ = x[UncalledBuiltin-82]
    	_ = x[InvalidAppend-83]
    	_ = x[InvalidCap-84]
    	_ = x[InvalidClose-85]
    	_ = x[InvalidCopy-86]
    	_ = x[InvalidComplex-87]
    	_ = x[InvalidDelete-88]
    	_ = x[InvalidImag-89]
    	_ = x[InvalidLen-90]
    	_ = x[SwappedMakeArgs-91]
    	_ = x[InvalidMake-92]
    	_ = x[InvalidReal-93]
    	_ = x[InvalidAssert-94]
    	_ = x[ImpossibleAssert-95]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/webhook_server.go

    	switch r.URL.Path {
    	case "/internalErr":
    		http.Error(w, "webhook internal server error", http.StatusInternalServerError)
    		return
    	case "/invalidReq":
    		w.WriteHeader(http.StatusSwitchingProtocols)
    		w.Write([]byte("webhook invalid request"))
    		return
    	case "/invalidResp":
    		w.Header().Set("Content-Type", "application/json")
    		w.Write([]byte("webhook invalid response"))
    	case "/disallow":
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 15 11:11:25 UTC 2021
    - 6.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/attributes_test.go

    		"no key name":           "foo.admission.k8s.io",
    		"empty key":             "",
    	}
    	for name, invalidKey := range testCases {
    		err := attr.AddAnnotation(invalidKey, "value-foo")
    		assert.Error(t, err)
    		annotations = attr.getAnnotations(auditinternal.LevelMetadata)
    		assert.Equal(t, annotations[invalidKey], "", name+": invalid pluginName is not allowed ")
    	}
    
    	// test all saved annotations
    	assert.Equal(
    		t,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 19:44:40 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/dsl/dependencies/DependenciesExtensionModuleTest.groovy

            def map = [invalidKey: "value", group: "com.example", name: "example", version: "1.0"]
            def dependencies = Mock(Dependencies)
            when:
            DependenciesExtensionModule.module(dependencies, map)
            then:
            def e = thrown(IllegalArgumentException)
            e.message == "The map must not contain the following keys: [invalidKey]"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 25 23:56:47 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  6. pilot/pkg/util/network/ip_test.go

    			addrs:    []string{"1111:2222::1", "::1", "127.0.0.1", "2.2.2.2", "2222:3333::1"},
    			expected: false,
    		},
    		{
    			name:     "test for invalid ip address",
    			addrs:    []string{"invalidip"},
    			expected: true,
    		},
    	}
    	for _, tt := range tests {
    		result := AllIPv6(tt.addrs)
    		if result != tt.expected {
    			t.Errorf("Test %s failed, expected: %t got: %t", tt.name, tt.expected, result)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 08 16:24:15 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  7. pkg/registry/core/configmap/strategy_test.go

    	newCfg := &api.ConfigMap{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:            "valid-config-data-2",
    			Namespace:       metav1.NamespaceDefault,
    			ResourceVersion: "4",
    		},
    		Data: map[string]string{
    			"invalidKey": "updatedValue",
    		},
    	}
    
    	Strategy.PrepareForUpdate(ctx, newCfg, cfg)
    
    	errs = Strategy.ValidateUpdate(ctx, newCfg, cfg)
    	if len(errs) == 0 {
    		t.Errorf("Expected a validation error")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 09 11:14:08 UTC 2017
    - 1.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/addresses_test.go

    			ExpectedMap: internalAddressCIDRMap,
    		},
    		{
    			Request: http.Request{
    				RemoteAddr: publicIP,
    			},
    			ExpectedMap: publicAddressCIDRMap,
    		},
    		{
    			Request: http.Request{
    				RemoteAddr: "invalidIP",
    			},
    			ExpectedMap: publicAddressCIDRMap,
    		},
    	}
    
    	_, ipRange, _ := netutils.ParseCIDRSloppy("10.0.0.0/24")
    	discoveryAddresses := DefaultAddresses{DefaultAddress: "ExternalAddress"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 20 08:42:09 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  9. pkg/util/flag/flags_test.go

    			expectVal: "0.0.0.0",
    		},
    		{
    			desc:      "valid ipv4 2",
    			argc:      "blah --ipport=127.0.0.1",
    			expectVal: "127.0.0.1",
    		},
    
    		{
    			desc:      "invalid IP",
    			argc:      "blah --ipport=invalidip",
    			expectErr: true,
    			expectVal: defaultIPPort,
    		},
    		{
    			desc:      "valid ipv4 with port",
    			argc:      "blah --ipport=0.0.0.0:8080",
    			expectVal: "0.0.0.0:8080",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 14 10:45:23 UTC 2021
    - 8.8K bytes
    - Viewed (0)
  10. src/main/webapp/js/admin/plugins/form-validator/lang/fr.js

    autorisés",groupCheckedRangeStart:"Choisissez entre ",groupCheckedTooFewStart:"Vous devez faire au moins ",groupCheckedTooManyStart:"Vous ne pouvez pas faire plus de ",groupCheckedEnd:" sélection(s)",badCreditCard:"Vous avez saisi un numéro de carte de crédit invalide",badCVV:"Vous avez saisi un CVV incorrect",wrongFileDim:"Mauvaise taille de l'image, ",imageTooTall:"l'image ne peut pas être plus élevée que",imageTooWide:"l'image ne peut pas être plus large que",imageTooSmall:"l'image est trop petite",min:"mo...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.6K bytes
    - Viewed (0)
Back to top