Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1461 - 1470 of 2,155 for minval (0.07 sec)

  1. android/guava-tests/test/com/google/common/collect/OrderingTest.java

       * increasing order according to that ordering.
       */
      private static class Scenario<T extends @Nullable Object> {
        final Ordering<T> ordering;
        final List<T> strictlyOrderedList;
        final T[] emptyArray;
    
        Scenario(Ordering<T> ordering, List<T> strictlyOrderedList, T[] emptyArray) {
          this.ordering = ordering;
          this.strictlyOrderedList = strictlyOrderedList;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/OrderingTest.java

       * increasing order according to that ordering.
       */
      private static class Scenario<T extends @Nullable Object> {
        final Ordering<T> ordering;
        final List<T> strictlyOrderedList;
        final T[] emptyArray;
    
        Scenario(Ordering<T> ordering, List<T> strictlyOrderedList, T[] emptyArray) {
          this.ordering = ordering;
          this.strictlyOrderedList = strictlyOrderedList;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

        @DoNotCall
        @Deprecated
        @Override
        public final ImmutableSortedMap<K, V> buildKeepingLast() {
          // TODO(emcmanus): implement
          throw new UnsupportedOperationException(
              "ImmutableSortedMap.Builder does not yet implement buildKeepingLast()");
        }
      }
    
      private final transient RegularImmutableSortedSet<K> keySet;
      private final transient ImmutableList<V> valueList;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/ElementOrder.java

     * }</pre>
     *
     * @author Joshua O'Madadhain
     * @since 20.0
     */
    @Beta
    @Immutable
    @ElementTypesAreNonnullByDefault
    public final class ElementOrder<T> {
      private final Type type;
    
      @SuppressWarnings("Immutable") // Hopefully the comparator provided is immutable!
      @CheckForNull
      private final Comparator<T> comparator;
    
      /**
       * The type of ordering that this object specifies.
       *
       * <ul>
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 17:21:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/graph/ElementOrder.java

     * }</pre>
     *
     * @author Joshua O'Madadhain
     * @since 20.0
     */
    @Beta
    @Immutable
    @ElementTypesAreNonnullByDefault
    public final class ElementOrder<T> {
      private final Type type;
    
      @SuppressWarnings("Immutable") // Hopefully the comparator provided is immutable!
      @CheckForNull
      private final Comparator<T> comparator;
    
      /**
       * The type of ordering that this object specifies.
       *
       * <ul>
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 17:21:56 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/collect/ForwardingSortedMapImplementsMapTest.java

    @ElementTypesAreNonnullByDefault
    public class ForwardingSortedMapImplementsMapTest extends SortedMapInterfaceTest<String, Integer> {
    
      private static class SimpleForwardingSortedMap<K, V> extends ForwardingSortedMap<K, V> {
        final SortedMap<K, V> delegate;
    
        SimpleForwardingSortedMap(SortedMap<K, V> delegate) {
          this.delegate = delegate;
        }
    
        @Override
        protected SortedMap<K, V> delegate() {
          return delegate;
        }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponse.java

    import jcifs.internal.smb1.trans.SmbComTransactionResponse;
    
    
    /**
     * 
     */
    public class Trans2QueryPathInformationResponse extends SmbComTransactionResponse {
    
        private final int informationLevel;
        private FileInformation info;
    
    
        /**
         * 
         * @param config
         * @param informationLevel
         */
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4K bytes
    - Viewed (0)
  8. impl/maven-core/src/main/java/org/apache/maven/eventspy/internal/EventSpyExecutionListener.java

    /**
     * Forwards execution events to EventSpies.
     * @since 3.0.2
     */
    class EventSpyExecutionListener extends AbstractExecutionListener {
    
        private final EventSpyDispatcher dispatcher;
    
        private final ExecutionListener delegate;
    
        EventSpyExecutionListener(EventSpyDispatcher dispatcher, ExecutionListener delegate) {
            this.dispatcher = dispatcher;
            this.delegate = delegate;
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/io/ToolchainsParseException.java

    public class ToolchainsParseException extends IOException {
    
        /**
         * The one-based index of the line containing the error.
         */
        private final int lineNumber;
    
        /**
         * The one-based index of the column containing the error.
         */
        private final int columnNumber;
    
        /**
         * Creates a new parser exception with the specified details.
         *
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. android/guava-tests/benchmark/com/google/common/base/ToStringHelperBenchmark.java

                .addValue(15.0f);
          }
        };
    
        void addEntries(MoreObjects.ToStringHelper helper) {}
      }
    
      @Param Dataset dataset;
    
      private static final String SHORT_NAME = "userId";
      private static final String LONG_NAME = "fluxCapacitorFailureRate95Percentile";
    
      private MoreObjects.ToStringHelper newHelper() {
        MoreObjects.ToStringHelper helper = MoreObjects.toStringHelper("klass");
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top