Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 574 for Enforce (0.67 sec)

  1. src/cmd/compile/internal/ssa/magic.go

    func umagic32(c int32) umagicData { return umagic(32, int64(c)) }
    func umagic64(c int64) umagicData { return umagic(64, c) }
    
    // For signed division, we use a similar strategy.
    // First, we enforce a positive c.
    //   x / c = -(x / (-c))
    // This will require an additional Neg op for c<0.
    //
    // If x is positive we're in a very similar state
    // to the unsigned case above.  We define:
    //   s = ⎡log2(c)⎤-1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:25 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. src/runtime/stubs.go

    // the memory manager.
    //
    // There's no corresponding barrier for the read side because the read
    // side naturally has a data dependency order. All architectures that
    // Go supports or seems likely to ever support automatically enforce
    // data dependency ordering.
    func publicationBarrier()
    
    // getcallerpc returns the program counter (PC) of its caller's caller.
    // getcallersp returns the stack pointer (SP) of its caller's caller.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/value.go

    // DynValue is a dynamically typed value used to describe unstructured content.
    // Whether the value has the desired type is determined by where it is used within the Instance or
    // Template, and whether there are schemas which might enforce a more rigid type definition.
    type DynValue struct {
    	ID          int64
    	EncodeStyle EncodeStyle
    	value       interface{}
    	exprValue   ref.Val
    	declType    *DeclType
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 20.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td

    def TF_DatasetMemoryCacheFree : MemFree<TF_DatasetMemoryCacheResource>;
    def TF_DatasetIteratorFree : MemFree<TF_DatasetIteratorResource>;
    
    // Op-based side effects
    
    // Op-based side effect traits can be used to enforce certain execution order
    // constraints, in particular for ops that don't use resource handles (those
    // typically have value-based side effects). For a `read` effect, all instances
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/query-params-str-validations.md

        The `Union` in `Union[str, None]` will allow your editor to give you better support and detect errors.
    
    ## Additional validation
    
    We are going to enforce that even though `q` is optional, whenever it is provided, **its length doesn't exceed 50 characters**.
    
    ### Import `Query` and `Annotated`
    
    To achieve that, first import:
    
    * `Query` from `fastapi`
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. src/encoding/base64/base64.go

    	copy(e.encode[:], encoder)
    	copy(e.decodeMap[:], decodeMapInitialize)
    
    	for i := 0; i < len(encoder); i++ {
    		// Note: While we document that the alphabet cannot contain
    		// the padding character, we do not enforce it since we do not know
    		// if the caller intends to switch the padding from StdPadding later.
    		switch {
    		case encoder[i] == '\n' || encoder[i] == '\r':
    			panic("encoding alphabet contains newline character")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_server.go

    			}
    			if s == "h2" && c == "http/1.1" {
    				http11fallback = true
    			}
    		}
    	}
    	// As a special case, let http/1.1 clients connect to h2 servers as if they
    	// didn't support ALPN. We used not to enforce protocol overlap, so over
    	// time a number of HTTP servers were configured with only "h2", but
    	// expected to accept connections from "http/1.1" clients. See Issue 46310.
    	if http11fallback {
    		return "", nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/rsc.io/markdown/link.go

    //
    // The GitHub “spec” declares that “autolinks can only come at the
    // beginning of a line, after whitespace, or any of the delimiting
    // characters *, _, ~, and (”. However, the GitHub web site does not
    // enforce this rule: text like "$******@****.*** is my email" links the
    // text following the $ as an email address. It appears the actual rule
    // is that autolinks cannot come after ASCII letters, although they can
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  9. src/encoding/xml/read.go

    		}
    		switch t := tok.(type) {
    		case StartElement:
    			consumed := false
    			if sv.IsValid() {
    				// unmarshalPath can call unmarshal, so we need to pass the depth through so that
    				// we can continue to enforce the maximum recursion limit.
    				consumed, err = d.unmarshalPath(tinfo, sv, nil, &t, depth)
    				if err != nil {
    					return err
    				}
    				if !consumed && saveAny.IsValid() {
    					consumed = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    //
    // Server Side Apply with go templates is an odd choice (no one likes YAML templating...) but is one of the few
    // remaining options after all others are ruled out.
    //   - Merge patch/Update cannot be used. If we always enforce that our object is *exactly* the same as
    //     the in-cluster object we will get in endless loops due to other controllers that like to add annotations, etc.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top