Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 5,714 for nvalid (0.17 sec)

  1. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    	// That's probably not appropriate for error messages.
    	for i := range cf.Valid {
    		cf.Valid[i] = filepath.Join(dir, cf.Valid[i])
    	}
    	cf.Omitted = append(cf.Omitted, omitted...)
    	for i := range cf.Omitted {
    		cf.Omitted[i].Path = filepath.Join(dir, cf.Omitted[i].Path)
    	}
    	for i := range cf.Invalid {
    		cf.Invalid[i].Path = filepath.Join(dir, cf.Invalid[i].Path)
    	}
    	return cf, cf.Err()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/template_flags_test.go

    			outputFormat:   "go-template",
    			templateArg:    "invalid",
    			expectedOutput: "invalid",
    		},
    		{
    			name:          "no printer is matched on an invalid outputFormat",
    			outputFormat:  "invalid",
    			expectNoMatch: true,
    		},
    		{
    			name:          "go-template printer should not match on any other format supported by another printer",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. src/net/http/cookie.go

    	}
    	return b.String()
    }
    
    // Valid reports whether the cookie is valid.
    func (c *Cookie) Valid() error {
    	if c == nil {
    		return errors.New("http: nil Cookie")
    	}
    	if !isCookieNameValid(c.Name) {
    		return errors.New("http: invalid Cookie.Name")
    	}
    	if !c.Expires.IsZero() && !validCookieExpires(c.Expires) {
    		return errors.New("http: invalid Cookie.Expires")
    	}
    	for i := 0; i < len(c.Value); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/ModelRuleExtractorTest.groovy

    - Method notOk() is not a valid rule method: Cannot have type variables (i.e. cannot be a generic method)
    - Method notOk() is not a valid rule method: A method annotated with @Mutate must have at least one parameter
    - Method notARule() is not a valid rule method: A method that is not annotated as a rule must be private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/generic/testing/tester.go

    		valid,
    		t.createObject,
    		t.getObject,
    		expectedGrace,
    	)
    }
    
    func (t *Tester) TestGet(valid runtime.Object) {
    	t.tester.TestGet(valid)
    }
    
    func (t *Tester) TestList(valid runtime.Object) {
    	t.tester.TestList(
    		valid,
    		t.setObjectsForList,
    	)
    }
    
    func (t *Tester) TestWatch(valid runtime.Object, labelsPass, labelsFail []labels.Set, fieldsPass, fieldsFail []fields.Set) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 16:50:16 UTC 2019
    - 4.8K bytes
    - Viewed (0)
  6. pkg/apis/resource/validation/validation.go

    			allErrs = append(allErrs, field.Invalid(fldPath.Child("apiGroup"), ref.APIGroup, msg))
    		}
    	}
    
    	if ref.Kind == "" {
    		allErrs = append(allErrs, field.Required(fldPath.Child("kind"), ""))
    	} else {
    		for _, msg := range pathvalidation.IsValidPathSegmentName(ref.Kind) {
    			allErrs = append(allErrs, field.Invalid(fldPath.Child("kind"), ref.Kind, msg))
    		}
    	}
    
    	if ref.Name == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  7. src/go/scanner/scanner.go

    	}
    
    	// suffix 'i'
    	if s.ch == 'i' {
    		tok = token.IMAG
    		s.next()
    	}
    
    	lit := string(s.src[offs:s.offset])
    	if tok == token.INT && invalid >= 0 {
    		s.errorf(invalid, "invalid digit %q in %s", lit[invalid-offs], litname(prefix))
    	}
    	if digsep&2 != 0 {
    		if i := invalidSep(lit); i >= 0 {
    			s.error(offs+i, "'_' must separate successive digits")
    		}
    	}
    
    	return tok, lit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  8. pkg/apis/storage/validation/validation.go

    			continue
    		}
    		if *tokenRequest.ExpirationSeconds < int64(min.Seconds()) {
    			allErrs = append(allErrs, field.Invalid(path.Child("expirationSeconds"), *tokenRequest.ExpirationSeconds, "may not specify a duration less than 10 minutes"))
    		}
    		if *tokenRequest.ExpirationSeconds > 1<<32 {
    			allErrs = append(allErrs, field.Invalid(path.Child("expirationSeconds"), *tokenRequest.ExpirationSeconds, "may not specify a duration larger than 2^32 seconds"))
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 00:47:13 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  9. src/internal/reflectlite/value.go

    // inappropriate to the kind of type causes a run time panic.
    //
    // The zero Value represents no value.
    // Its IsValid method returns false, its Kind method returns Invalid,
    // its String method returns "<invalid Value>", and all other methods panic.
    // Most functions and methods never return an invalid value.
    // If one does, its documentation states the conditions explicitly.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/discovery/token/token_test.go

    				},
    			},
    			configMap: &fakeConfigMap{
    				name: bootstrapapi.ConfigMapClusterInfo,
    				data: nil,
    			},
    		},
    		{
    			name:        "invalid: token format is invalid",
    			tokenID:     "foo",
    			tokenSecret: "bar",
    			cfg: &kubeadmapi.Discovery{
    				BootstrapToken: &kubeadmapi.BootstrapTokenDiscovery{
    					Token: "foo.bar",
    				},
    			},
    			configMap: &fakeConfigMap{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top