Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 2,192 for supe (0.02 sec)

  1. android/guava/src/com/google/common/collect/TreeMultiset.java

    1. TreeMultiset(Reference<AvlNode<E>> rootReference, GeneralRange<E> range, AvlNode<E> endLink) {
    2. super(range.comparator());
    3. this.rootReference = rootReference;
    4. this.range = range;
    5. this.header = endLink;
    6. }
    7.  
    8. TreeMultiset(Comparator<? super E> comparator) {
    9. super(comparator);
    10. this.range = GeneralRange.all(comparator);
    11. this.header = new AvlNode<>();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 20:24:49 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  2. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/MojoExecutionException.java

    1. super(message, cause);
    2. }
    3.  
    4. /**
    5. * Construct a new <code>MojoExecutionException</code> exception wrapping an underlying <code>Throwable</code>
    6. * and providing a <code>message</code>.
    7. *
    8. * @param message
    9. * @param cause
    10. */
    11. public MojoExecutionException(String message, Throwable cause) {
    12. super(message, cause);
    13. }
    14.  
    15. /**
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/collect/QueuesTest.java

    1. threadPool.shutdown();
    2. assertTrue("Some worker didn't finish in time", threadPool.awaitTermination(10, SECONDS));
    3. }
    4.  
    5. private static <T> int drain(
    6. BlockingQueue<T> q,
    7. Collection<? super T> buffer,
    8. int maxElements,
    9. long timeout,
    10. TimeUnit unit,
    11. boolean interruptibly)
    12. throws InterruptedException {
    13. return interruptibly
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 02:42:09 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/DescendingMultiset.java

    1. implements SortedMultiset<E> {
    2. abstract SortedMultiset<E> forwardMultiset();
    3.  
    4. @Nullable private transient Comparator<? super E> comparator;
    5.  
    6. @Override
    7. public Comparator<? super E> comparator() {
    8. Comparator<? super E> result = comparator;
    9. if (result == null) {
    10. return comparator = Ordering.from(forwardMultiset().comparator()).<E>reverse();
    11. }
    12. return result;
    13. }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jan 24 16:03:45 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/features/CollectionSize.java

    1. */
    2.  
    3. ANY(ZERO, ONE, SEVERAL);
    4.  
    5. private final Set<Feature<? super Collection>> implied;
    6. private final @Nullable Integer numElements;
    7.  
    8. CollectionSize(int numElements) {
    9. this.implied = emptySet();
    10. this.numElements = numElements;
    11. }
    12.  
    13. CollectionSize(Feature<? super Collection>... implied) {
    14. // Keep the order here, so that PerCollectionSizeTestSuiteBuilder
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Request.java

    1.  
    2. /**
    3. * @param config
    4. */
    5. protected ServerMessageBlock2Request ( Configuration config ) {
    6. super(config);
    7. }
    8.  
    9.  
    10. /**
    11. * @param config
    12. * @param command
    13. */
    14. public ServerMessageBlock2Request ( Configuration config, int command ) {
    15. super(config, command);
    16. }
    17.  
    18.  
    19. @Override
    20. public ServerMessageBlock2Request<T> ignoreDisconnect () {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.2K bytes
    - Viewed (0)
  7. compat/maven-compat/src/main/java/org/apache/maven/usability/plugin/ExpressionDocumentationException.java

    1. static final long serialVersionUID = 1;
    2.  
    3. public ExpressionDocumentationException(String message, Throwable cause) {
    4. super(message, cause);
    5. }
    6.  
    7. public ExpressionDocumentationException(String message) {
    8. super(message);
    9. }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/RepositoryMetadataDeploymentException.java

    1. */
    2. @Deprecated
    3. public class RepositoryMetadataDeploymentException extends Throwable {
    4. public RepositoryMetadataDeploymentException(String message) {
    5. super(message);
    6. }
    7.  
    8. public RepositoryMetadataDeploymentException(String message, Exception e) {
    9. super(message, e);
    10. }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

    1. public static <T extends @Nullable Object, K, V>
    2. Collector<T, ?, ImmutableSortedMap<K, V>> toImmutableSortedMap(
    3. Comparator<? super K> comparator,
    4. Function<? super T, ? extends K> keyFunction,
    5. Function<? super T, ? extends V> valueFunction) {
    6. return CollectCollectors.toImmutableSortedMap(comparator, keyFunction, valueFunction);
    7. }
    8.  
    9. /**
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/AbstractSortedKeySortedSetMultimap.java

    1. super(map);
    2. }
    3.  
    4. @Override
    5. public SortedMap<K, Collection<V>> asMap() {
    6. return (SortedMap<K, Collection<V>>) super.asMap();
    7. }
    8.  
    9. @Override
    10. SortedMap<K, Collection<V>> backingMap() {
    11. return (SortedMap<K, Collection<V>>) super.backingMap();
    12. }
    13.  
    14. @Override
    15. public SortedSet<K> keySet() {
    16. return (SortedSet<K>) super.keySet();
    17. }
    18.  
    19. @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 15 21:08:00 UTC 2021
    - 1.8K bytes
    - Viewed (0)
Back to top