Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for KClass (0.03 sec)

  1. okhttp/api/jvm/okhttp.api

    	public abstract fun request ()Lokhttp3/Request;
    	public abstract fun tag (Ljava/lang/Class;)Ljava/lang/Object;
    	public abstract fun tag (Ljava/lang/Class;Lkotlin/jvm/functions/Function0;)Ljava/lang/Object;
    	public abstract fun tag (Lkotlin/reflect/KClass;)Ljava/lang/Object;
    	public abstract fun tag (Lkotlin/reflect/KClass;Lkotlin/jvm/functions/Function0;)Ljava/lang/Object;
    	public abstract fun timeout ()Lokio/Timeout;
    }
    
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Wed Nov 05 18:28:35 UTC 2025
    - 70.2K bytes
    - Viewed (0)
  2. okhttp/api/android/okhttp.api

    	public abstract fun request ()Lokhttp3/Request;
    	public abstract fun tag (Ljava/lang/Class;)Ljava/lang/Object;
    	public abstract fun tag (Ljava/lang/Class;Lkotlin/jvm/functions/Function0;)Ljava/lang/Object;
    	public abstract fun tag (Lkotlin/reflect/KClass;)Ljava/lang/Object;
    	public abstract fun tag (Lkotlin/reflect/KClass;Lkotlin/jvm/functions/Function0;)Ljava/lang/Object;
    	public abstract fun timeout ()Lokio/Timeout;
    }
    
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Wed Nov 05 18:28:35 UTC 2025
    - 70.3K bytes
    - Viewed (0)
  3. okhttp/src/jvmTest/kotlin/okhttp3/EventListenerTest.kt

          CallStart::class,
          ProxySelectStart::class,
          ProxySelectEnd::class,
          DnsStart::class,
          DnsEnd::class,
          ConnectStart::class,
          ConnectEnd::class,
          ConnectionAcquired::class,
          RequestHeadersStart::class,
          RequestHeadersEnd::class,
          ResponseHeadersStart::class,
          ResponseHeadersEnd::class,
          FollowUpDecision::class,
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Wed Nov 05 18:28:35 UTC 2025
    - 70.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/MapsTest.java

        assertThrows(UnsupportedOperationException.class, () -> map.subMap("a", "z").keySet().add("a"));
        assertThrows(UnsupportedOperationException.class, () -> map.tailMap("a").keySet().add("a"));
        assertThrows(UnsupportedOperationException.class, () -> map.headMap("r").keySet().add("a"));
        assertThrows(
            UnsupportedOperationException.class, () -> map.headMap("r").tailMap("m").keySet().add("a"));
      }
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Dec 11 22:56:33 UTC 2025
    - 62.7K bytes
    - Viewed (0)
  5. fess-crawler/src/test/resources/extractor/eml/sample2.eml

    div[class="collapse"]{
    width:100% !important;
    }
    
    td[class="logo_space"]{
    height:12px !important;
    }
    
    span[class="address"]{
    display:block !important;
    width:240px !important;
    }
    td[class="cut"]{
    display:none !important;
    }
    
    td[class="logo"]{
    width:40px !important;
    }
    
    td[class="logo"] img {
    width:24px !important;
    }
    
    img[class="media"]{
    width:100% !important;
    }
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sat Jan 16 07:50:35 UTC 2016
    - 91.6K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/cache/CacheLoadingTest.java

        assertThrows(InvalidCacheLoadException.class, () -> cache.get(new Object()));
        stats = cache.stats();
        assertThat(stats.missCount()).isEqualTo(1);
        assertThat(stats.loadSuccessCount()).isEqualTo(0);
        assertThat(stats.loadExceptionCount()).isEqualTo(1);
        assertThat(stats.hitCount()).isEqualTo(0);
    
        assertThrows(InvalidCacheLoadException.class, () -> cache.getUnchecked(new Object()));
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Sep 30 22:03:28 UTC 2025
    - 91.1K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

                Interface12.class,
                Interface1.class,
                Interface2.class,
                Class1.class,
                Object.class);
        makeUnmodifiable(types.interfaces().rawTypes())
            .containsExactly(
                Interface3.class,
                Interface12.class,
                Interface1.class,
                Interface2.class,
                Iterable.class);
        makeUnmodifiable(types.classes().rawTypes())
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Tue Oct 28 18:44:53 UTC 2025
    - 89K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Sets.java

     * @author Kevin Bourrillion
     * @author Jared Levy
     * @author Chris Povirk
     * @since 2.0
     */
    @GwtCompatible
    public final class Sets {
      private Sets() {}
    
      /**
       * {@link AbstractSet} substitute without the potentially-quadratic {@code removeAll}
       * implementation.
       */
      abstract static class ImprovedAbstractSet<E extends @Nullable Object> extends AbstractSet<E> {
        @Override
        public boolean removeAll(Collection<?> c) {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 18:35:44 UTC 2025
    - 81.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/Futures.java

     *
     * @author Kevin Bourrillion
     * @author Nishant Thakkar
     * @author Sven Mawson
     * @since 1.0
     */
    @GwtCompatible
    public final class Futures extends GwtFuturesCatchingSpecialization {
    
      // A note on memory visibility.
      // Many of the utilities in this class (transform, withFallback, withTimeout, asList, combine)
      // have two requirements that significantly complicate their design.
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 64.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

    @J2ktIncompatible
    @GwtIncompatible // TODO(dpb): GWT compatibility.
    public final class ClosingFuture<V extends @Nullable Object> {
    
      private static final LazyLogger logger = new LazyLogger(ClosingFuture.class);
    
      /**
       * An object that can capture objects to be closed later, when a {@link ClosingFuture} pipeline is
       * done.
       */
      public static final class DeferredCloser {
        @RetainedWith private final CloseableList list;
    
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Thu Sep 11 13:51:27 UTC 2025
    - 96.9K bytes
    - Viewed (0)
Back to top