Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 125 for Enforce (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    			if r.URL.Path == rquestTimesOutPath {
    				defer close(reqHandlerCompletedCh)
    
    				// this will force the request to time out.
    				<-callerRoundTripDoneCh
    			}
    		})
    
    		// NOTE: the server will enforce a 5s timeout on every
    		//  incoming request, and the client enforces a timeout of 1m.
    		handler := newHandlerChain(t, requestHandler, controller, userName, 5*time.Second)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server.go

    via a flag.
    
    HTTP endpoint: HTTP endpoint passed as a parameter on the command line. This endpoint
    is checked every 20 seconds (also configurable with a flag).`,
    		// The Kubelet has special flag parsing requirements to enforce flag precedence rules,
    		// so we do all our parsing manually in Run, below.
    		// DisableFlagParsing=true provides the full set of flags passed to the kubelet in the
    		// `args` arg to Run, without Cobra's interference.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	if err := rest.BeforeCreate(e.CreateStrategy, ctx, obj); err != nil {
    		return nil, err
    	}
    	// at this point we have a fully formed object.  It is time to call the validators that the apiserver
    	// handling chain wants to enforce.
    	if createValidation != nil {
    		if err := createValidation(ctx, obj.DeepCopyObject()); err != nil {
    			return nil, err
    		}
    	}
    
    	name, err := e.ObjectNameFunc(obj)
    	if err != nil {
    		return nil, err
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        // Since we expand the dims, we need to apply them to the begin_mask &
        // end_mask.
        revised_begin_mask |= strided_slice_op.getNewAxisMask();
        revised_end_mask |= strided_slice_op.getNewAxisMask();
    
        // Enforce operator precedence.
        uint64_t revised_shrink_axis_mask = strided_slice_op.getShrinkAxisMask() &
                                            ~strided_slice_op.getNewAxisMask();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/Futures.java

       * <p>The delegate future is interrupted and cancelled if it times out.
       *
       * @param delegate The future to delegate to.
       * @param time when to time out the future
       * @param scheduledExecutor The executor service to enforce the timeout.
       * @since 28.0
       */
      @J2ktIncompatible
      @GwtIncompatible // java.util.concurrent.ScheduledExecutorService
      public static <V extends @Nullable Object> ListenableFuture<V> withTimeout(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  6. src/runtime/mgcpacer.go

    	if scanWorkRemaining < 1000 {
    		// We set a somewhat arbitrary lower bound on
    		// remaining scan work since if we aim a little high,
    		// we can miss by a little.
    		//
    		// We *do* need to enforce that this is at least 1,
    		// since marking is racy and double-scanning objects
    		// may legitimately make the remaining scan work
    		// negative, even in the hard goal regime.
    		scanWorkRemaining = 1000
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    		requirePrunedDefaults:                    true,
    		requireAtomicSetType:                     true,
    		requireMapListKeysMapSetValidation:       true,
    		// strictCost is always true to enforce cost limits.
    		celEnvironmentSet: environment.MustBaseEnvSet(environment.DefaultCompatibilityVersion(), true),
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    			if err != nil {
    				return err
    			}
    		case !foundOriginal && !foundPatch:
    			continue
    		}
    
    		// Split all items into patch items and server-only items and then enforce the order.
    		var patchItems, serverOnlyItems []interface{}
    		if len(patchMeta.GetPatchMergeKey()) == 0 {
    			// Primitives doesn't need merge key to do partitioning.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/validation/validation.go

    // variable composition is not allowed, for example, when validating MatchConditions.
    // strictStatelessCELCompiler is a cel Compiler that enforces strict cost enforcement.
    // nonStrictStatelessCELCompiler is a cel Compiler that does not enforce strict cost enforcement.
    var strictStatelessCELCompiler = plugincel.NewCompiler(environment.MustBaseEnvSet(environment.DefaultCompatibilityVersion(), true))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.3.md

    * Adding loadBalancer services to quota system ([#24247](https://github.com/kubernetes/kubernetes/pull/24247), [@sdminonne](https://github.com/sdminonne))
    * Enforce --max-pods in kubelet admission; previously was only enforced in scheduler ([#24674](https://github.com/kubernetes/kubernetes/pull/24674), [@gmarek](https://github.com/gmarek))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
Back to top