Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 197 for isAllowed (0.18 sec)

  1. src/cmd/go/internal/modload/modfile.go

    		return err
    	}
    	return nil
    }
    
    // ErrDisallowed is returned by version predicates passed to Query and similar
    // functions to indicate that a version should not be considered.
    var ErrDisallowed = errors.New("disallowed module version")
    
    // CheckExclusions returns an error equivalent to ErrDisallowed if module m is
    // excluded by the main module's go.mod file.
    func CheckExclusions(ctx context.Context, m module.Version) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation_test.go

    			TargetContainerName:      "debug",
    		}},
    		field.ErrorList{{Type: field.ErrorTypeNotFound, Field: "ephemeralContainers[1].targetContainerName"}},
    	}, {
    		"Container uses disallowed field: Lifecycle",
    		line(),
    		[]core.EphemeralContainer{{
    			EphemeralContainerCommon: core.EphemeralContainerCommon{
    				Name:                     "debug",
    				Image:                    "image",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/switch.go

    			if typecheck.Implements(c.typ.Type(), ic.typ.Type()) {
    				continue caseLoop
    			}
    			// Note that we don't need to worry about:
    			// 1. Two concrete types shadowing each other. That's
    			//    disallowed by the spec.
    			// 2. A concrete type shadowing an interface type.
    			//    That can never happen, as interface types can
    			//    be satisfied by an infinite set of concrete types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    			ExpectOK:  false,
    			ExpectErr: false,
    		},
    
    		"self signed": {
    			Opts:  getDefaultVerifyOptions(t),
    			Certs: getCerts(t, selfSignedCert),
    
    			ExpectErr: true,
    		},
    
    		"server cert disallowed": {
    			Opts:  getDefaultVerifyOptions(t),
    			Certs: getCerts(t, serverCert),
    
    			ExpectErr: true,
    		},
    		"server cert allowing non-client cert usages": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  5. doc/go_mem.html

    and <i>w'</i> happens before <i>r</i>.
    That is, each read must observe a value written by a preceding or concurrent write.
    </p>
    
    <p>
    Additionally, observation of acausal and “out of thin air” writes is disallowed.
    </p>
    
    <p>
    Reads of memory locations larger than a single machine word
    are encouraged but not required to meet the same semantics
    as word-sized memory locations,
    observing a single allowed write <i>w</i>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    				"foo": "bar",
    				"bar": [
    					"baz",
    					"qux"
    				]
    			}`, valid.Unix()),
    			wantInitErr: `claimMappings.extra[2].key: Duplicate value: "example.org/foo"`,
    		},
    		{
    			name: "disallowed issuer via configured value",
    			options: Options{
    				JWTAuthenticator: apiserver.JWTAuthenticator{
    					Issuer: apiserver.Issuer{
    						URL:       "https://auth.example.com",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  7. cmd/object-api-utils.go

    	if HasPrefix(object, SlashSeparator) {
    		return ObjectNamePrefixAsSlash{
    			Bucket: bucket,
    			Object: object,
    		}
    	}
    	if runtime.GOOS == globalWindowsOSName {
    		// Explicitly disallowed characters on windows.
    		// Avoids most problematic names.
    		if strings.ContainsAny(object, `\:*?"|<>`) {
    			return ObjectNameInvalid{
    				Bucket: bucket,
    				Object: object,
    			}
    		}
    	}
    	return nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    		if len(*pvSpec.VolumeAttributesClassName) == 0 {
    			allErrs = append(allErrs, field.Required(fldPath.Child("volumeAttributesClassName"), "an empty string is disallowed"))
    		} else {
    			for _, msg := range ValidateClassName(*pvSpec.VolumeAttributesClassName, false) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/help/helpdoc.go

    		to appear in #cgo CFLAGS source code directives.
    		Does not apply to the CGO_CFLAGS environment variable.
    	CGO_CFLAGS_DISALLOW
    		A regular expression specifying flags that must be disallowed
    		from appearing in #cgo CFLAGS source code directives.
    		Does not apply to the CGO_CFLAGS environment variable.
    	CGO_CPPFLAGS, CGO_CPPFLAGS_ALLOW, CGO_CPPFLAGS_DISALLOW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/vcs/vcs.go

    	url, err := urlpkg.Parse(repoRoot)
    	if err != nil {
    		return err
    	}
    	if url.Scheme == "" {
    		return errors.New("no scheme")
    	}
    	if url.Scheme == "file" {
    		return errors.New("file scheme disallowed")
    	}
    	return nil
    }
    
    var fetchGroup singleflight.Group
    var (
    	fetchCacheMu sync.Mutex
    	fetchCache   = map[string]fetchResult{} // key is metaImportsForPrefix's importPrefix
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
Back to top