Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Reimplement (0.32 sec)

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

          extends AbstractNavigableMap<K, V> {
        /*
         * It's less code to extend AbstractNavigableMap and forward the filtering logic to
         * FilteredEntryMap than to extend FilteredEntrySortedMap and reimplement all the NavigableMap
         * methods.
         */
    
        private final NavigableMap<K, V> unfiltered;
        private final Predicate<? super Entry<K, V>> entryPredicate;
        private final Map<K, V> filteredDelegate;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 159.3K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    from interface org.hamcrest.SelfDescribing describeTo Constructor Detail BaseMatcher public BaseMatcher() Method Detail _dont_implement_Matcher___instead_extend_BaseMatcher_ @Deprecated public final void _dont_implement_Matcher___instead_extend_BaseMatcher_() Deprecated. Description copied from interface: Matcher This method simply acts a friendly reminder not to implement Matcher directly and instead extend BaseMatcher. It's easy to ignore JavaDoc, but a bit harder to ignore compile errors . Specified...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 236.8K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.4.md

    * Fix unmountDevice issue caused by shared mount in GCI ([#38411](https://github.com/kubernetes/kubernetes/pull/38411), [@jingxu97](https://github.com/jingxu97))
    * Implement CanMount() for gfsMounter for linux ([#36686](https://github.com/kubernetes/kubernetes/pull/36686), [@rkouj](https://github.com/rkouj))
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 133.5K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    <code>S1</code> and <code>S2</code> may have or share.
    </p>
    
    <p>
    A type implements any interface comprising any subset of its methods
    and may therefore implement several distinct interfaces. For
    instance, all types implement the <i>empty interface</i>:
    </p>
    
    <pre>
    interface{}
    </pre>
    
    <p>
    Similarly, consider this interface specification,
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        futureResult.cancel(true);
        shouldCompleteFunction.countDown();
        try {
          futureResult.get();
          fail();
        } catch (CancellationException expected) {
        }
        // TODO(cpovirk): implement interruption, updating this test:
        // https://github.com/google/guava/issues/1989
        assertEquals(1, gotException.getCount());
        // gotException.await();
      }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.30.md

       ([#123190](https://github.com/kubernetes/kubernetes/pull/123190), [@padlar](https://github.com/padlar))
    - Allowed scheduling framework plugins that implement `io.Closer` to be gracefully closed.
       ([#122498](https://github.com/kubernetes/kubernetes/pull/122498), [@Gekko0114](https://github.com/Gekko0114))
    - Bumped cAdvisor to `v0.49.0`.
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Wed Apr 17 17:56:15 GMT 2024
    - 227.9K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

        futureResult.cancel(true);
        shouldCompleteFunction.countDown();
        try {
          futureResult.get();
          fail();
        } catch (CancellationException expected) {
        }
        // TODO(cpovirk): implement interruption, updating this test:
        // https://github.com/google/guava/issues/1989
        assertEquals(1, gotException.getCount());
        // gotException.await();
      }
    
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/LocalCache.java

            if (!removeEntry(e, e.getHash(), RemovalCause.SIZE)) {
              throw new AssertionError();
            }
          }
        }
    
        // TODO(fry): instead implement this with an eviction head
        @GuardedBy("this")
        ReferenceEntry<K, V> getNextEvictable() {
          for (ReferenceEntry<K, V> e : accessQueue) {
            int weight = e.getValueReference().getWeight();
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/LocalCache.java

            if (!removeEntry(e, e.getHash(), RemovalCause.SIZE)) {
              throw new AssertionError();
            }
          }
        }
    
        // TODO(fry): instead implement this with an eviction head
        @GuardedBy("this")
        ReferenceEntry<K, V> getNextEvictable() {
          for (ReferenceEntry<K, V> e : accessQueue) {
            int weight = e.getValueReference().getWeight();
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 150.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDataClassConverters.kt

                firSymbolBuilder.typeBuilder.buildKtType(firDiagnostic.a),
                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
        add(FirErrors.VALUE_CLASS_CANNOT_IMPLEMENT_INTERFACE_BY_DELEGATION) { firDiagnostic ->
            ValueClassCannotImplementInterfaceByDelegationImpl(
                firDiagnostic as KtPsiDiagnostic,
                token,
            )
        }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 208.3K bytes
    - Viewed (0)
Back to top