Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,536 for Enforce (0.18 sec)

  1. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    	d.emit = emitFunc
    }
    
    // SetEmitEnabled controls whether the emitFunc provided to NewDecoder
    // should be called. The default is true.
    //
    // This facility exists to let servers enforce MAX_HEADER_LIST_SIZE
    // while still decoding and keeping in-sync with decoder state, but
    // without doing unnecessary decompression or generating unnecessary
    // garbage for header fields past the limit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/primitives/UnsignedLongs.java

     * {@code long} values. When possible, it is recommended that the {@link UnsignedLong} wrapper class
     * be used, at a small efficiency penalty, to enforce the distinction in the type system.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/PrimitivesExplained#unsigned-support">unsigned
     * primitive utilities</a>.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. pkg/registry/core/pod/storage/eviction.go

    		pod.Status.Phase == api.PodPending || !pod.ObjectMeta.DeletionTimestamp.IsZero() {
    		return true
    	}
    	return false
    }
    
    func shouldEnforceResourceVersion(pod *api.Pod) bool {
    	// We don't need to enforce ResourceVersion for terminal pods
    	if pod.Status.Phase == api.PodSucceeded || pod.Status.Phase == api.PodFailed || !pod.ObjectMeta.DeletionTimestamp.IsZero() {
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 08 11:58:48 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    }
    
    func (p *Preconditions) Check(key string, obj runtime.Object) error {
    	if p == nil {
    		return nil
    	}
    	objMeta, err := meta.Accessor(obj)
    	if err != nil {
    		return NewInternalErrorf(
    			"can't enforce preconditions %v on un-introspectable object %v, got error: %v",
    			*p,
    			obj,
    			err)
    	}
    	if p.UID != nil && *p.UID != objMeta.GetUID() {
    		err := fmt.Sprintf(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. src/go/build/read.go

    			}
    		}
    	}
    
    	// If the file imports "embed",
    	// we have to look for //go:embed comments
    	// in the remainder of the file.
    	// The compiler will enforce the mapping of comments to
    	// declared variables. We just need to know the patterns.
    	// If there were //go:embed comments earlier in the file
    	// (near the package statement or imports), the compiler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/primitives/UnsignedLongs.java

     * {@code long} values. When possible, it is recommended that the {@link UnsignedLong} wrapper class
     * be used, at a small efficiency penalty, to enforce the distinction in the type system.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/PrimitivesExplained#unsigned-support">unsigned
     * primitive utilities</a>.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/resources.go

    	"k8s.io/client-go/dynamic"
    	"k8s.io/client-go/rest"
    	"k8s.io/client-go/restmapper"
    	"k8s.io/client-go/scale"
    )
    
    const (
    	noxuInstanceNum int64 = 9223372036854775807
    )
    
    // AllowAllSchema doesn't enforce any schema restrictions
    func AllowAllSchema() *apiextensionsv1.CustomResourceValidation {
    	return &apiextensionsv1.CustomResourceValidation{
    		OpenAPIV3Schema: &apiextensionsv1.JSONSchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 02:01:40 UTC 2021
    - 21.4K bytes
    - Viewed (0)
  8. fastapi/security/oauth2.py

                    The OAuth2 spec says it is required and MUST be the fixed string
                    "password". Nevertheless, this dependency class is permissive and
                    allows not passing it. If you want to enforce it, use instead the
                    `OAuth2PasswordRequestFormStrict` dependency.
                    """
                ),
            ] = None,
            username: Annotated[
                str,
                Form(),
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/schedule.go

    		for _, v := range b.Values {
    			if v.Op != OpPhi && v.Op != OpInitMem && v.Type.IsMemory() {
    				nextMem[v.MemoryArg().ID] = v
    			}
    		}
    
    		// Add edges to enforce that any load must come before the following store.
    		for _, v := range b.Values {
    			if v.Op == OpPhi || v.Type.IsMemory() {
    				continue
    			}
    			w := v.MemoryArg()
    			if w == nil {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 15:53:17 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Lists.java

       *
       * <p>This is useful when a varargs method needs to use a signature such as {@code (Foo firstFoo,
       * Foo... moreFoos)}, in order to avoid overload ambiguity or to enforce a minimum argument count.
       *
       * <p>The returned list is serializable and implements {@link RandomAccess}.
       *
       * @param first the first element
       * @param rest an array of additional elements, possibly empty
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
Back to top