Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,228 for eqclass (0.2 sec)

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

        assertEquals(String[].class, empty.getClass());
        assertThat(empty).isEmpty();
      }
    
      @GwtIncompatible // ObjectArrays.newArray(Class, int)
      public void testNewArray_fromClass_Nonempty() {
        String[] array = ObjectArrays.newArray(String.class, 2);
        assertEquals(String[].class, array.getClass());
        assertThat(array).hasLength(2);
        assertNull(array[0]);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

    public class TypeTokenResolutionTest extends TestCase {
    
      private static class Foo<A, B> {
    
        Class<? super A> getClassA() {
          return new TypeToken<A>(getClass()) {}.getRawType();
        }
    
        Class<? super B> getClassB() {
          return new TypeToken<B>(getClass()) {}.getRawType();
        }
    
        Class<? super A[]> getArrayClassA() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/reflect/TypeTokenResolutionTest.java

    public class TypeTokenResolutionTest extends TestCase {
    
      private static class Foo<A, B> {
    
        Class<? super A> getClassA() {
          return new TypeToken<A>(getClass()) {}.getRawType();
        }
    
        Class<? super B> getClassB() {
          return new TypeToken<B>(getClass()) {}.getRawType();
        }
    
        Class<? super A[]> getArrayClassA() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneFirDirectInheritorsProvider.kt

            // file, the FIR class for `ktClass` will come from the dangling module. So we'd compare the original FIR class for the supertype
            // with the dangling FIR class for `ktClass`, resulting in a mismatch. To avoid such incompatible comparisons, we need to resolve
            // `ktClass` to the original FIR class.
            //
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGListenerAdapterFactory.java

                AdaptedListener otherAdapter = (AdaptedListener) otherHandler;
                return proxyAdapter.getClass().equals(otherHandler.getClass())
                    && proxyAdapter.delegate.getClass().equals(otherAdapter.delegate.getClass());
            }
    
            private int proxyHashCode(Object proxy) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractStatelessDerivationStrategy.java

            }
            return o != null && getClass() == o.getClass();
        }
    
        @Override
        public int hashCode() {
            return hashCode;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/references/FirIdeNormalAnalysisScriptSourceModuleReferenceShortenerTestGenerated.java

      @Nested
      @TestMetadata("analysis/analysis-api/testData/components/referenceShortener/shortenRange/conflicts")
      @TestDataPath("$PROJECT_ROOT")
      public class Conflicts {
        @Test
        public void testAllFilesPresentInConflicts() {
          KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/components/referenceShortener/shortenRange/conflicts"), Pattern.compile("^(.+)\\.kts$"), null, true);
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Feb 16 12:48:24 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorLoggingIntegrationTest.groovy

                action = """
                    Logging.getLogger(getClass()).warn("warn message");
                    Logging.getLogger(getClass()).info("info message");
                    Logging.getLogger(getClass()).debug("debug message");
                    Logging.getLogger(getClass()).error("error message");
                    
                    org.slf4j.LoggerFactory.getLogger(getClass()).warn("slf4j warn");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/KotlinSourceQueries.kt

    private
    val CtClassOrCtMember.declaringClass: CtClass
        get() = when (this) {
            is CtClass -> declaringClass ?: this
            is CtMember -> declaringClass
            else -> throw IllegalStateException("Unsupported javassist member type '${this::class}'")
        }
    
    
    private
    val CtClass.baseQualifiedKotlinName: String
        get() =
            if (isKotlinFileFacadeClass) packageName
            else name
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 20:38:19 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/Collectors.java

                return Arrays.toString(value);
            }
        }
    
        public static class TypedCollector<T> implements ProvidedCollector<T> {
            private final Class<? extends T> type;
            protected final Collector<T> delegate;
            private final ValueCollector<T> valueCollector;
    
            public TypedCollector(@Nullable Class<? extends T> type, Collector<T> delegate) {
                this.type = type;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:15:09 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top