Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,689 for resort (0.18 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/matchconditions/matcher.go

    	if len(errorList) > 0 {
    		admissionmetrics.Metrics.ObserveMatchConditionEvaluationTime(ctx, time.Since(t), m.objectName, m.matcherKind, m.matcherType, string(versionedAttr.GetOperation()))
    		// If mix of true and eval errors then resort to fail policy
    		if m.failPolicy == v1.Fail {
    			// mix of true and errors with fail policy fail should fail request without calling webhook
    			err = utilerrors.NewAggregate(errorList)
    			return MatchResult{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 14:46:11 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. src/runtime/tls_arm.s

    #include "go_asm.h"
    #include "go_tls.h"
    #include "funcdata.h"
    #include "textflag.h"
    
    // We have to resort to TLS variable to save g(R10).
    // One reason is that external code might trigger
    // SIGSEGV, and our runtime.sigtramp don't even know we
    // are in external code, and will continue to use R10,
    // this might as well result in another SIGSEGV.
    // Note: both functions will clobber R0 and R11 and
    // can be called from 5c ABI code.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:38:07 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/dropped_requests_tracker.go

    	retryAfterUpdateUnix int64
    }
    
    func newDroppedRequestsStats(nowUnix int64) *droppedRequestsStats {
    	result := &droppedRequestsStats{
    		// We assume that we can bump at any time after first dropped request.
    		retryAfterUpdateUnix: 0,
    	}
    	result.retryAfter.Store(1)
    	return result
    }
    
    func (s *droppedRequestsStats) recordDroppedRequest(unixTime int64) {
    	// Short path - if the current second matches passed time,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 13:50:25 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/util/ConfigureUtil.java

                Object value = entry.getValue();
    
                DynamicInvokeResult result = dynamicObject.trySetProperty(name, value);
                if (result.isFound()) {
                    continue;
                }
    
                result = dynamicObject.tryInvokeMethod(name, value);
                if (!result.isFound()) {
                    throw dynamicObject.setMissingProperty(name);
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission.go

    		forceLiveLookup = exists && namespace.Status.Phase == v1.NamespaceActive
    	}
    
    	// refuse to operate on non-existent namespaces
    	if !exists || forceLiveLookup {
    		// as a last resort, make a call directly to storage
    		namespace, err = l.client.CoreV1().Namespaces().Get(context.TODO(), a.GetNamespace(), metav1.GetOptions{})
    		switch {
    		case errors.IsNotFound(err):
    			return err
    		case err != nil:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 15 09:52:18 UTC 2021
    - 8.6K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/dependencies/implementation.go

    	iptablesLegacyBin   = "iptables-legacy"
    	ip6tablesBin        = "ip6tables"
    	ip6tablesNftBin     = "ip6tables-nft"
    	ip6tablesLegacyBin  = "ip6tables-legacy"
    	iptablesRestoreBin  = "iptables-restore"
    	ip6tablesRestoreBin = "ip6tables-restore"
    )
    
    // It is not sufficient to check for the presence of one binary or the other in $PATH -
    // we must choose a binary that is
    // 1. Available in our $PATH
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 19:54:50 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationLogger.java

            DEPRECATED_FEATURE_HANDLER.init(warningMode, buildOperationProgressEventEmitter, problemsService, problemStream);
        }
    
        public synchronized static void reset() {
            DEPRECATED_FEATURE_HANDLER.reset();
        }
    
        public synchronized static void reportSuppressedDeprecations() {
            DEPRECATED_FEATURE_HANDLER.reportSuppressedDeprecations();
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPublication.java

     * method or directly by an action (or closure) passed into {@link #pom(org.gradle.api.Action)}.
     * As a last resort, it is possible to modify the generated POM using the {@link MavenPom#withXml(org.gradle.api.Action)} method.
     * </p>
     * <h4>Example of publishing a Java module with a source artifact and a customized POM</h4>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/EvaluationContext.java

         * <p>
         * Use sparingly. In most cases, it is better to rework the call chain to avoid re-evaluating the owner.
         *
         * @param evaluation the evaluation
         * @param <R> the type of the result
         * @param <E> (optional) exception type being thrown by the evaluation
         * @return the result of the evaluation
         * @throws E exception from the {@code evaluation} is propagated
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 16:54:51 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/compilability_check_util.h

        // XlaOpKernel is a no-op kernel).  We avoid auto-clustering these ops so
        // that the user is not surprised when XLA is implicitly enabled. If the
        // user explicitly specifies to use XLA, it is fine to resort to a dummy
        // implementation. Currently Assert and CheckNumerics ops have dummy XLA
        // implementations.
        bool allow_eliding_assert_and_checknumerics_ops = false;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 14.9K bytes
    - Viewed (0)
Back to top