Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,362 for resort (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/vendor/golang.org/x/net/http2/hpack/hpack.go

    		d.buf = d.saveBuf.Bytes()
    		d.saveBuf.Reset()
    	}
    
    	for len(d.buf) > 0 {
    		err = d.parseHeaderFieldRepr()
    		if err == errNeedMore {
    			// Extra paranoia, making sure saveBuf won't
    			// get too large. All the varint and string
    			// reading code earlier should already catch
    			// overlong things and return ErrStringLength,
    			// but keep this as a last resort.
    			const varIntOverhead = 8 // conservative
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 14 18:30:34 UTC 2023
    - 14.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Throwables.java

        propagateIfPossible(throwable, declaredType2);
      }
    
      /**
       * Propagates {@code throwable} as-is if it is an instance of {@link RuntimeException} or {@link
       * Error}, or else as a last resort, wraps it in a {@code RuntimeException} and then propagates.
       *
       * <p>This method always throws an exception. The {@code RuntimeException} return type allows
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Throwables.java

        propagateIfPossible(throwable, declaredType2);
      }
    
      /**
       * Propagates {@code throwable} as-is if it is an instance of {@link RuntimeException} or {@link
       * Error}, or else as a last resort, wraps it in a {@code RuntimeException} and then propagates.
       *
       * <p>This method always throws an exception. The {@code RuntimeException} return type allows
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Mar 06 15:38:58 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top