Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for classes (0.26 sec)

  1. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                      ...
    JavaScript
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 04:21:06 GMT 2020
    - 65.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/reflect/TypeToken.java

        public TypeSet classes() {
          throw new UnsupportedOperationException("interfaces().classes() not supported.");
        }
    
        private Object readResolve() {
          return getTypes().interfaces();
        }
    
        private static final long serialVersionUID = 0;
      }
    
      private final class ClassSet extends TypeSet {
    
        @CheckForNull private transient ImmutableSet<TypeToken<? super T>> classes;
    
        @Override
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 53.6K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertThat(types.classes()).contains(TypeToken.of(int.class));
        assertThat(types.classes().rawTypes()).contains(int.class);
      }
    
      public void testGetTypes_withInterfacesAndSuperclasses() {
        abstract class Class2 extends Class1 implements Interface12 {}
        abstract class Class3<T> extends Class2 implements Interface3<T> {}
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 88.7K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        assertThat(types.classes()).contains(TypeToken.of(int.class));
        assertThat(types.classes().rawTypes()).contains(int.class);
      }
    
      public void testGetTypes_withInterfacesAndSuperclasses() {
        abstract class Class2 extends Class1 implements Interface12 {}
        abstract class Class3<T> extends Class2 implements Interface3<T> {}
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 88.7K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            get() = (this as? FirClassLikeSymbol<*>)?.classId
    
        private val FirConstructorSymbol.classIdIfExists: ClassId?
            get() = this.containingClassLookupTag()?.classId
    
        /**
         * Returns true if the class symbol has a type parameter that is supposed to be provided for its parent class.
         *
         * Example:
         * class Outer<T> {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:51:33 GMT 2024
    - 69.5K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_3x.md

        Mocking sophisticated classes like `OkHttpClient` is fragile and you
        shouldn’t do it. But if that’s how you want to live your life we won’t stand
        in your way!
    
    
    ## Version 3.0.1
    
    _2016-01-14_
    
     *  Rollback OSGi support. This was causing library jars to include more classes
        than expected, which interfered with Gradle builds.
    
    
    ## Version 3.0.0
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Multimaps.java

       *
       * <p>The {@code factory}-generated and {@code map} classes determine the multimap iteration
       * order. They also specify the behavior of the {@code equals}, {@code hashCode}, and {@code
       * toString} methods for the multimap and its returned views. However, the multimap's {@code get}
       * method returns instances of a different class than {@code factory.get()} does.
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 86.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/CharMatcher.java

        }
    
        @Override
        void setBits(BitSet bitSet) {
          bitSet.or(table);
        }
      }
    
      // Static constant implementation classes
    
      /** Implementation of {@link #any()}. */
      private static final class Any extends NamedFastMatcher {
    
        static final CharMatcher INSTANCE = new Any();
    
        private Any() {
          super("CharMatcher.any()");
        }
    
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/CharMatcher.java

        }
    
        @Override
        void setBits(BitSet bitSet) {
          bitSet.or(table);
        }
      }
    
      // Static constant implementation classes
    
      /** Implementation of {@link #any()}. */
      private static final class Any extends NamedFastMatcher {
    
        static final CharMatcher INSTANCE = new Any();
    
        private Any() {
          super("CharMatcher.any()");
        }
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/Futures.java

     * @author Nishant Thakkar
     * @author Sven Mawson
     * @since 1.0
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    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.
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 59.6K bytes
    - Viewed (0)
Back to top