Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 352 for Enforce (0.17 sec)

  1. pkg/config/analysis/analyzers/testdata/common/sidecar-injector-enabled-nsbydefault.yaml

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/eviction_manager.go

    	localStorageCapacityIsolation bool
    }
    
    // ensure it implements the required interface
    var _ Manager = &managerImpl{}
    
    // NewManager returns a configured Manager and an associated admission handler to enforce eviction configuration.
    func NewManager(
    	summaryProvider stats.SummaryProvider,
    	config Config,
    	killPodFunc KillPodFunc,
    	imageGC ImageGC,
    	containerGC ContainerGC,
    	recorder record.EventRecorder,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-with-revision-canary.yaml

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/gateway.go

    			proxyConfig, istionetworking.ListenerProtocolTCP, builder.push)
    		// In HTTP, we need to have RBAC, etc. upfront so that they can enforce policies immediately
    		httpFilterChainOpts.networkFilters = extension.PopAppendNetwork(httpFilterChainOpts.networkFilters, wasm, extensions.PluginPhase_AUTHN)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top