Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 138 for sorted_op (0.15 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/SortedMapInterfaceTest.java

    import com.google.common.annotations.GwtCompatible;
    import java.util.Iterator;
    import java.util.Map.Entry;
    import java.util.SortedMap;
    
    /**
     * Tests representing the contract of {@link SortedMap}. Concrete subclasses of this base class test
     * conformance of concrete {@link SortedMap} subclasses to that contract.
     *
     * @author Jared Levy
     */
    // TODO: Use this class to test classes besides ImmutableSortedMap.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/collect/testing/SortedMapInterfaceTest.java

    import com.google.common.annotations.GwtCompatible;
    import java.util.Iterator;
    import java.util.Map.Entry;
    import java.util.SortedMap;
    
    /**
     * Tests representing the contract of {@link SortedMap}. Concrete subclasses of this base class test
     * conformance of concrete {@link SortedMap} subclasses to that contract.
     *
     * @author Jared Levy
     */
    // TODO: Use this class to test classes besides ImmutableSortedMap.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 06 00:47:57 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ForwardingSortedMap.java

        extends ForwardingMap<K, V> implements SortedMap<K, V> {
      // TODO(lowasser): identify places where thread safety is actually lost
    
      /** Constructor for use by subclasses. */
      protected ForwardingSortedMap() {}
    
      @Override
      protected abstract SortedMap<K, V> delegate();
    
      @Override
      @CheckForNull
      public Comparator<? super K> comparator() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/StandardRowSortedTable.java

      }
    
      /**
       * {@inheritDoc}
       *
       * <p>This method returns a {@link SortedMap}, instead of the {@code Map} specified in the {@link
       * Table} interface.
       */
      @Override
      public SortedMap<R, Map<C, V>> rowMap() {
        return (SortedMap<R, Map<C, V>>) super.rowMap();
      }
    
      @Override
      SortedMap<R, Map<C, V>> createRowMap() {
        return new RowSortedMap();
      }
    
      @WeakOuter
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jul 15 15:41:16 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/AbstractSortedKeySortedSetMultimap.java

        extends AbstractSortedSetMultimap<K, V> {
    
      AbstractSortedKeySortedSetMultimap(SortedMap<K, Collection<V>> map) {
        super(map);
      }
    
      @Override
      public SortedMap<K, Collection<V>> asMap() {
        return (SortedMap<K, Collection<V>>) super.asMap();
      }
    
      @Override
      SortedMap<K, Collection<V>> backingMap() {
        return (SortedMap<K, Collection<V>>) super.backingMap();
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 21:08:00 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/SortedMapDifference.java

        extends MapDifference<K, V> {
    
      @Override
      SortedMap<K, V> entriesOnlyOnLeft();
    
      @Override
      SortedMap<K, V> entriesOnlyOnRight();
    
      @Override
      SortedMap<K, V> entriesInCommon();
    
      @Override
      SortedMap<K, ValueDifference<V>> entriesDiffering();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 04 13:28:27 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/ForwardingSortedMapImplementsMapTest.java

      @Override
      protected SortedMap<String, Integer> makeEmptyMap() {
        return new SimpleForwardingSortedMap<>(
            new TreeMap<String, Integer>(Ordering.<String>natural().nullsFirst()));
      }
    
      @Override
      protected SortedMap<String, Integer> makePopulatedMap() {
        final SortedMap<String, Integer> sortedMap = makeEmptyMap();
        sortedMap.put("one", 1);
        sortedMap.put("two", 2);
        sortedMap.put("three", 3);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/aot/benchmark.cc

      return static_cast<uint64>(tv.tv_sec) * 1000000 + tv.tv_usec;
    }
    
    void DumpStatsToStdout(const Stats& stats) {
      // Compute stats.
      std::vector<int64_t> sorted_us(stats.per_iter_us);
      std::sort(sorted_us.begin(), sorted_us.end());
      const size_t count_us = sorted_us.size();
      double sum_us = 0;
      size_t count_us_trimmed = 0;
      double sum_us_trimmed = 0;
      size_t count_us_best = 0;
      double sum_us_best = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 19:45:29 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/TreeBasedTable.java

       * returns a {@link SortedMap}, instead of the {@link Map} specified in the {@link Table}
       * interface.
       *
       * @since 10.0 (<a href="https://github.com/google/guava/wiki/Compatibility" >mostly
       *     source-compatible</a> since 7.0)
       */
      @Override
      public SortedMap<C, V> row(R rowKey) {
        return new TreeRow(rowKey);
      }
    
      private class TreeRow extends Row implements SortedMap<C, V> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/StandardRowSortedTable.java

      }
    
      /**
       * {@inheritDoc}
       *
       * <p>This method returns a {@link SortedMap}, instead of the {@code Map} specified in the {@link
       * Table} interface.
       */
      @Override
      public SortedMap<R, Map<C, V>> rowMap() {
        return (SortedMap<R, Map<C, V>>) super.rowMap();
      }
    
      @Override
      SortedMap<R, Map<C, V>> createRowMap() {
        return new RowSortedMap();
      }
    
      @WeakOuter
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jul 15 15:41:16 UTC 2021
    - 4.3K bytes
    - Viewed (0)
Back to top