Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 113 for compareIDs (0.29 sec)

  1. guava/src/com/google/common/primitives/Longs.java

          builder.append(separator).append(array[i]);
        }
        return builder.toString();
      }
    
      /**
       * Returns a comparator that compares two {@code long} arrays <a
       * href="http://en.wikipedia.org/wiki/Lexicographical_order">lexicographically</a>. That is, it
       * compares, using {@link #compare(long, long)}), the first pair of values that follow any common
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/runtime_passes.td

        of variables, and when the next desired state does not change, it can avoid
        reformatting. We associate a set of variables on a device with a formatting
        state, and TPUReshardVariablesOps compares the current state with a desired
        state (which can be the compilation result). If they mismatch,
        TPUReshardVariablesOp reformats the variables to the desired state; if they
        match, TPUReshardVariablesOp is a no-op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 18:58:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  3. pkg/controller/volume/persistentvolume/testing/testing.go

    			return expected.Error
    		}
    	}
    	return nil
    }
    
    // CheckVolumes compares all expectedVolumes with set of volumes at the end of
    // the test and reports differences.
    func (r *VolumeReactor) CheckVolumes(expectedVolumes []*v1.PersistentVolume) error {
    	r.lock.Lock()
    	defer r.lock.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilderFactory.java

            return new BuildModelSourceTransformer();
        }
    
        private ModelVersionParser newModelVersionParser() {
            // This is a limited parser that does not support ranges and compares versions as strings
            // in real-life this parser should not be used, but replaced with a proper one
            return new ModelVersionParser() {
                @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/storage/v1alpha1/generated.proto

    //
    // They are consumed by the kube-scheduler when a CSI driver opts into
    // capacity-aware scheduling with CSIDriverSpec.StorageCapacity. The scheduler
    // compares the MaximumVolumeSize against the requested size of pending volumes
    // to filter out unsuitable nodes. If MaximumVolumeSize is unset, it falls back
    // to a comparison against the less precise Capacity. If that is also unset,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. pkg/controller/endpointslicemirroring/reconciler.go

    	r.metricsCache.UpdateEndpointPortCache(endpointsNN, epMetrics)
    
    	return r.finalize(endpoints, slices)
    }
    
    // reconcileByPortMapping compares the endpoints found in existing slices with
    // the list of desired endpoints and returns lists of slices to create, update,
    // and delete.
    func (r *reconciler) reconcileByPortMapping(
    	endpoints *corev1.Endpoints,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 18:08:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/cel/library/quantity.go

    // Comparisons
    //
    //   - isGreaterThan: Returns true if and only if the receiver is greater than the operand
    //
    //   - isLessThan: Returns true if and only if the receiver is less than the operand
    //
    //   - compareTo: Compares receiver to operand and returns 0 if they are equal, 1 if the receiver is greater, or -1 if the receiver is less than the operand
    //
    //
    //     <Quantity>.isLessThan(<quantity>) <bool>
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Ordering.java

      @Deprecated
      public static <T extends @Nullable Object> Ordering<T> from(Ordering<T> ordering) {
        return checkNotNull(ordering);
      }
    
      /**
       * Returns an ordering that compares objects according to the order in which they appear in the
       * given list. Only objects present in the list (according to {@link Object#equals}) may be
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/MapMaker.java

     * be quickly garbage-collected before they are ever accessed.
     *
     * <p>{@code new MapMaker().weakKeys().makeMap()} is a recommended replacement for {@link
     * java.util.WeakHashMap}, but note that it compares keys using object identity whereas {@code
     * WeakHashMap} uses {@link Object#equals}.
     *
     * @author Bob Lee
     * @author Charles Fry
     * @author Kevin Bourrillion
     * @since 2.0
     */
    @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Ordering.java

      @Deprecated
      public static <T extends @Nullable Object> Ordering<T> from(Ordering<T> ordering) {
        return checkNotNull(ordering);
      }
    
      /**
       * Returns an ordering that compares objects according to the order in which they appear in the
       * given list. Only objects present in the list (according to {@link Object#equals}) may be
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
Back to top