Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 44 for invalidSep (0.29 sec)

  1. src/crypto/x509/name_constraints_test.go

    	// will parse and are tested in name constraint tests at the top of this
    	// file.
    	badNames := []string{
    		"uri:https://example.com./dsf",
    		"invalidip:0102",
    		"invalidip:0102030405",
    	}
    
    	priv, err := ecdsa.GenerateKey(elliptic.P256(), rand.Reader)
    	if err != nil {
    		panic(err)
    	}
    
    	for _, badName := range badNames {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 22:40:21 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  2. pkg/apis/core/v1/helper/helpers_test.go

    				},
    				{
    					Key:    "invalid",
    					Values: []string{},
    				},
    			},
    			expectErr: true,
    		},
    		{
    			in: []v1.TopologySelectorLabelRequirement{{
    				Key:    "/invalidkey",
    				Values: []string{"bar", "baz"},
    			}},
    			expectErr: true,
    		},
    	}
    
    	for i, tc := range tc {
    		out, err := TopologySelectorRequirementsAsSelector(tc.in)
    		if err == nil && tc.expectErr {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. pkg/proxy/util/utils_test.go

    			t.Errorf("%s", tc.name)
    		}
    	}
    }
    
    func TestIsZeroCIDR(t *testing.T) {
    	testCases := []struct {
    		name     string
    		input    string
    		expected bool
    	}{
    		{
    			name:     "invalide cidr",
    			input:    "",
    			expected: false,
    		},
    		{
    			name:     "ipv4 cidr",
    			input:    "172.10.0.0/16",
    			expected: false,
    		},
    		{
    			name:     "ipv4 zero cidr",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. docs/fr/docs/python-types.md

    * **Convertir des données** : depuis la requête vers les types requis.
    * **Valider des données** : venant de chaque requête :
        * Générant automatiquement des **erreurs** renvoyées au client quand la donnée est invalide.
    * **Documenter** l'API avec OpenAPI :
        * ce qui ensuite utilisé par les interfaces utilisateur automatiques de documentation interactive.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. pkg/apis/networking/validation/validation_test.go

    		LoadBalancer: networking.IngressLoadBalancerStatus{
    			Ingress: []networking.IngressLoadBalancerIngress{
    				{IP: "127.0.0.2", Hostname: "foo.com"},
    			},
    		},
    	}
    	invalidIP := newValid()
    	invalidIP.Status = networking.IngressStatus{
    		LoadBalancer: networking.IngressLoadBalancerStatus{
    			Ingress: []networking.IngressLoadBalancerIngress{
    				{IP: "abcd", Hostname: "foo.com"},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/typexpr.go

    		}()
    	}
    
    	defer func() {
    		setDefType(def, res)
    	}()
    
    	var cause string
    	gtyp := check.genericType(x, &cause)
    	if cause != "" {
    		check.errorf(x, NotAGenericType, invalidOp+"%s%s (%s)", x, xlist, cause)
    	}
    	if !isValid(gtyp) {
    		return gtyp // error already reported
    	}
    
    	// evaluate arguments
    	targs := check.typeList(xlist)
    	if targs == nil {
    		return Typ[Invalid]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. src/go/types/typexpr.go

    		}()
    	}
    
    	defer func() {
    		setDefType(def, res)
    	}()
    
    	var cause string
    	gtyp := check.genericType(ix.X, &cause)
    	if cause != "" {
    		check.errorf(ix.Orig, NotAGenericType, invalidOp+"%s (%s)", ix.Orig, cause)
    	}
    	if !isValid(gtyp) {
    		return gtyp // error already reported
    	}
    
    	// evaluate arguments
    	targs := check.typeList(ix.Indices)
    	if targs == nil {
    		return Typ[Invalid]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    			{name: "strategic-merge-patch-warn-validation", path: "/namespaces/default/simples/id", verb: "PATCH", data: invalidSMP, queryParams: warnFieldValidation, contentType: "application/strategic-merge-patch+json;...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_fr.properties

    labels.error_title	=	Erreur
    labels.system_error_title	=	Erreur système
    labels.contact_site_admin	=	Contactez l'administrateur du site.
    labels.request_error_title	=	Mauvaise requête
    labels.bad_request	=	Requête invalide pour l'URL.
    labels.page_not_found_title	=	Page non trouvée
    labels.check_url	=	Vérifiez l'URL.
    labels.user_name	=	Nom d'utilisateur
    labels.login	=	Connexion
    labels.login.placeholder_username	=	Nom d'utilisateur
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/call.go

    	cgocall := x.mode == cgofunc
    
    	// a type parameter may be "called" if all types have the same signature
    	sig, _ := coreType(x.typ).(*Signature)
    	if sig == nil {
    		check.errorf(x, InvalidCall, invalidOp+"cannot call non-function %s", x)
    		x.mode = invalid
    		x.expr = call
    		return statement
    	}
    
    	// Capture wasGeneric before sig is potentially instantiated below.
    	wasGeneric := sig.TypeParams().Len() > 0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31.5K bytes
    - Viewed (0)
Back to top