Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for Class2 (0.1 sec)

  1. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        abstract class Class2 extends Class1 implements Interface12 {}
        abstract class Class3<T> extends Class2 implements Interface3<T> {}
        TypeToken<Class3<String>>.TypeSet types = new TypeToken<Class3<String>>() {}.getTypes();
        makeUnmodifiable(types.rawTypes())
            .containsExactly(
                Class3.class,
                Interface3.class,
                Iterable.class,
                Class2.class,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

        abstract class Class2 extends Class1 implements Interface12 {}
        abstract class Class3<T> extends Class2 implements Interface3<T> {}
        TypeToken<Class3<String>>.TypeSet types = new TypeToken<Class3<String>>() {}.getTypes();
        makeUnmodifiable(types.rawTypes())
            .containsExactly(
                Class3.class,
                Interface3.class,
                Iterable.class,
                Class2.class,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

        }
    
        def "can substitute a classified dependency with a non classified version"() {
            def v1 = mavenRepo.module("org", "lib", "1.0")
                .artifact(classifier: 'classy')
                .publish()
            // classifier doesn't exist anymore
            def v2 = mavenRepo.module("org", "lib", "1.1").publish()
            def trigger = mavenRepo.module("org", "other", "1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            javaLibrary()
            uncheckedModule("org", "foo", "1.0") {
                artifact(classifier: 'classy')
                withSignature {
                    keyring.sign(it)
                }
            }
            buildFile << """
                dependencies {
                    implementation "org:foo:1.0:classy"
                }
            """
    
            expect:
            succeeds ":compileJava"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                solutions == [ 'Use a different alias which doesn\'t contain \'class\'.' ]
            }
    
            where:
            reserved << [
                "class",
                "my-class",
                "my-class-lib"
            ]
        }
    
        @VersionCatalogProblemTestFor(
            VersionCatalogProblemId.RESERVED_ALIAS_NAME
        )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/elf.go

    //	  uint8_t fp_abi;
    //	  /* Processor-specific extension.  */
    //	  uint32_t isa_ext;
    //	  /* Mask of ASEs used.  */
    //	  uint32_t ases;
    //	  /* Mask of general flags.  */
    //	  uint32_t flags1;
    //	  uint32_t flags2;
    //	} Elf_Internal_ABIFlags_v0;
    func elfWriteMipsAbiFlags(ctxt *Link) int {
    	sh := elfshname(".MIPS.abiflags")
    	ctxt.Out.SeekSet(int64(sh.Off))
    	ctxt.Out.Write16(0) // version
    	ctxt.Out.Write8(32) // isaLevel
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def configuration = conf().extendsFrom(otherConf)
            configuration.getDependencies().add(configurationDependency)
    
            then:
            dump(configuration) == """
    Configuration:  class='class org.gradle.api.internal.artifacts.configurations.DefaultUnlockedConfiguration'  name='conf'  hashcode='${configuration.hashCode()}'  role='Legacy'
    Current Usage:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  8. src/debug/elf/file_test.go

    						{Attr: dwarf.AttrLanguage, Val: int64(1), Class: dwarf.ClassConstant},
    						{Attr: dwarf.AttrName, Val: "t.c", Class: dwarf.ClassString},
    						{Attr: dwarf.AttrCompDir, Val: "/tmp", Class: dwarf.ClassString},
    						{Attr: dwarf.AttrLowpc, Val: uint64(0x0), Class: dwarf.ClassAddress},
    						{Attr: dwarf.AttrHighpc, Val: uint64(0x5), Class: dwarf.ClassAddress},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

    import org.junit.jupiter.params.provider.ArgumentsSource
    
    class FileSystemParamProvider : SimpleProvider() {
      override fun arguments() =
        listOf(
          FakeFileSystem().apply { emulateUnix() } to false,
          FileSystem.SYSTEM to TestUtil.windows,
          FakeFileSystem().apply { emulateWindows() } to true,
        )
    }
    
    @Timeout(60)
    @Tag("Slow")
    class DiskLruCacheTest {
      private lateinit var filesystem: FaultyFileSystem
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

    import org.junit.jupiter.params.ParameterizedTest
    import org.junit.jupiter.params.provider.ArgumentsSource
    
    /** Test how HTTP/2 interacts with HTTP features.  */
    @Timeout(60)
    @Flaky
    @Tag("Slow")
    class HttpOverHttp2Test {
      class ProtocolParamProvider : SimpleProvider() {
        override fun arguments() = listOf(Protocol.H2_PRIOR_KNOWLEDGE, Protocol.HTTP_2)
      }
    
      @RegisterExtension
      val platform: PlatformRule = PlatformRule()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
Back to top