Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 711 for Enforce (0.22 sec)

  1. tensorflow/compiler/mlir/lite/transforms/passes.td

          TFL::ControlNodeOp, which depend on the control token generated by the most recent
          preceding such operation, if any. This copies the logic that is currently executed
          at runtime to enforce that the relative order of side-effectful operations is
          preserved and expresses it in terms of control dependencies.
    
          For purposes of this pass, an operator is considered to have/depend on side effects if
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/check.go

    				f.Fatalf("value %s has %d args, expected %d", v.LongString(),
    					len(v.Args), nArgs)
    			}
    
    			// Check to make sure aux values make sense.
    			canHaveAux := false
    			canHaveAuxInt := false
    			// TODO: enforce types of Aux in this switch (like auxString does below)
    			switch opcodeTable[v.Op].auxType {
    			case auxNone:
    			case auxBool:
    				if v.AuxInt < 0 || v.AuxInt > 1 {
    					f.Fatalf("bad bool AuxInt value for %v", v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

          // Found an operand that isn't scheduled yet, return true.
          return true;
        }
      }
      return false;
    }
    
    // Sorts the operations in the provided range to enforce dominance.
    // This is useful after fusing / reorganizing Operations in a block and later
    // needing to readjust the ordering to ensure dominance.
    LogicalResult SortTopologically(Block::iterator begin, Block::iterator end) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. docs/en/docs/advanced/security/oauth2-scopes.md

        But OAuth2 with scopes can be nicely integrated into your API (with OpenAPI) and your API docs.
    
        Nevertheless, you still enforce those scopes, or any other security/authorization requirement, however you need, in your code.
    
        In many cases, OAuth2 with scopes can be an overkill.
    
        But if you know you need it, or you are curious, keep reading.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  5. src/image/gif/reader.go

    	//
    	// The spec (Appendix F - Compression), says that "An End of
    	// Information code... must be the last code output by the encoder
    	// for an image". In practice, though, giflib (a widely used C
    	// library) does not enforce this, so we also accept lzwr returning
    	// io.ErrUnexpectedEOF (meaning that the encoded stream hit io.EOF
    	// before the LZW decoder saw an explicit end code), provided that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. src/encoding/base32/base32.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: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testcshared/cshared_test.go

    	}
    	stderr := new(strings.Builder)
    	cmd.Stderr = stderr
    
    	if GOOS != "windows" {
    		// TestUnexportedSymbols relies on file descriptor 30
    		// being closed when the program starts, so enforce
    		// that in all cases. (The first three descriptors are
    		// stdin/stdout/stderr, so we just need to make sure
    		// that cmd.ExtraFiles[27] exists and is nil.)
    		cmd.ExtraFiles = make([]*os.File, 28)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    	validationDirective string
    }
    
    func (p *applyPatcher) applyPatchToCurrentObject(requestContext context.Context, obj runtime.Object) (runtime.Object, error) {
    	force := false
    	if p.options.Force != nil {
    		force = *p.options.Force
    	}
    	if p.fieldManager == nil {
    		panic("FieldManager must be installed to run apply")
    	}
    
    	patchObj := &unstructured.Unstructured{Object: map[string]interface{}{}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top