Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 86 for equivalently (0.19 sec)

  1. guava/src/com/google/common/cache/CacheBuilder.java

     *         new CacheLoader<Key, Graph>() {
     *           public Graph load(Key key) throws AnyException {
     *             return createExpensiveGraph(key);
     *           }
     *         });
     * }</pre>
     *
     * <p>Or equivalently,
     *
     * <pre>{@code
     * // In real life this would come from a command-line flag or config file
     * String spec = "maximumSize=10000,expireAfterWrite=10m";
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        // to +/-inf at every integer x < 0, and this is controlled by the
        // sin(pi * x) term.  The slope is large, so precision is particularly
        // important.
        //
        // Because abs(sin(pi * x)) has period 1, we can equivalently use
        // abs(sin(pi * frac(x))), where frac(x) is the fractional part of x.  This
        // is more numerically accurate: It doesn't overflow to inf like pi * x can,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Iterators.java

      /**
       * Returns the empty iterator.
       *
       * <p>The {@link Iterable} equivalent of this method is {@link ImmutableSet#of()}.
       */
      static <T extends @Nullable Object> UnmodifiableIterator<T> emptyIterator() {
        return emptyListIterator();
      }
    
      /**
       * Returns the empty iterator.
       *
       * <p>The {@link Iterable} equivalent of this method is {@link ImmutableSet#of()}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Iterators.java

      /**
       * Returns the empty iterator.
       *
       * <p>The {@link Iterable} equivalent of this method is {@link ImmutableSet#of()}.
       */
      static <T extends @Nullable Object> UnmodifiableIterator<T> emptyIterator() {
        return emptyListIterator();
      }
    
      /**
       * Returns the empty iterator.
       *
       * <p>The {@link Iterable} equivalent of this method is {@link ImmutableSet#of()}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. pkg/apis/admissionregistration/types.go

    const (
    	// Exact means requests should only be sent to the webhook if they exactly match a given rule
    	Exact MatchPolicyType = "Exact"
    	// Equivalent means requests should be sent to the webhook if they modify a resource listed in rules via another API group or version.
    	Equivalent MatchPolicyType = "Equivalent"
    )
    
    // SideEffectClass denotes the type of side effects resulting from calling the webhook
    type SideEffectClass string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MapMakerInternalMap.java

              if (e.getHash() == hash
                  && entryKey != null
                  && map.keyEquivalence.equivalent(key, entryKey)) {
                V entryValue = e.getValue();
    
                boolean explicitRemoval = false;
                if (map.valueEquivalence().equivalent(value, entryValue)) {
                  explicitRemoval = true;
                } else if (isCollected(e)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/types.go

    const (
    	// Exact means requests should only be sent to the webhook if they exactly match a given rule.
    	Exact MatchPolicyType = "Exact"
    	// Equivalent means requests should be sent to the webhook if they modify a resource listed in rules via another API group or version.
    	Equivalent MatchPolicyType = "Equivalent"
    )
    
    // SideEffectClass specifies the types of side effects a webhook may have.
    // +enum
    type SideEffectClass string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

              if (e.getHash() == hash
                  && entryKey != null
                  && map.keyEquivalence.equivalent(key, entryKey)) {
                V entryValue = e.getValue();
    
                boolean explicitRemoval = false;
                if (map.valueEquivalence().equivalent(value, entryValue)) {
                  explicitRemoval = true;
                } else if (isCollected(e)) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // +optional
      repeated NamedRuleWithOperations excludeResourceRules = 4;
    
      // matchPolicy defines how the "MatchResources" list is used to match incoming requests.
      // Allowed values are "Exact" or "Equivalent".
      //
      // - Exact: match a request only if it exactly matches a specified rule.
      // For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    const (
    	// Exact means requests should only be sent to the webhook if they exactly match a given rule
    	Exact MatchPolicyType = "Exact"
    	// Equivalent means requests should be sent to the webhook if they modify a resource listed in rules via another API group or version.
    	Equivalent MatchPolicyType = "Equivalent"
    )
    
    // SideEffectClass specifies the types of side effects a webhook may have.
    type SideEffectClass string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
Back to top