Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for Classes (0.13 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDirectoryPluginIntegrationTest.groovy

                    dependencies {
                        classpath(files("./first/build/classes/java/main"))
                        classpath(files("./second/build/classes/java/main"))
                    }
                }
                apply plugin: FirstPlugin
                apply plugin: SecondPlugin
            """
    
            when:
            executer.inDirectory(file("first")).withTasks("classes").run()
            executer.inDirectory(file("second")).withTasks("classes").run()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. platforms/jvm/testing-junit-platform/build.gradle.kts

    }
    
    
    description = """Support classes used to run tests with the JUnit Platform testing framework.
    This project is separate from :testing-jvm-infrastructure since it requires junit-platform which itself requires Java 8+.
    This project should only be used by :testing-jvm-infrastructure, however it is not depended upon directly.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 986 bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/DefaultClassDecoder.kt

    
    internal
    class DefaultClassDecoder : ClassDecoder {
    
        private
        val classes = ReadIdentities()
    
        private
        val scopes = ReadIdentities()
    
        override fun ReadContext.decodeClass(): Class<*> {
            val id = readSmallInt()
            val type = classes.getInstance(id)
            if (type != null) {
                return type as Class<*>
            }
            val name = readString()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGroovyIntegrationTest.groovy

                ":compileJava", ":compileGroovy", ":processResources", ":classes", ":jar", ":assemble",
                ":compileTestJava", ":compileTestGroovy", ":processTestResources", ":testClasses", ":test", ":check",
                ":build"
            ]
            def classFile = file("build/classes/groovy/main/Thing.class")
            def testClassFile = file("build/classes/groovy/test/ThingTest.class")
            def testResults = file("build/test-results/test")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/DefaultClassEncoder.kt

    ) : ClassEncoder {
    
        private
        val classes = WriteIdentities()
    
        private
        val scopes = WriteIdentities()
    
        override fun WriteContext.encodeClass(type: Class<*>) {
            val id = classes.getId(type)
            if (id != null) {
                writeSmallInt(id)
            } else {
                val scope = scopeLookup.scopeFor(type.classLoader)
                val newId = classes.putInstance(type)
                writeSmallInt(newId)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. platforms/jvm/language-jvm/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.instrumented-project")
    }
    
    description = """Contains some base and shared classes for JVM language support, like AbstractCompile class and BaseForkOptions classes,
    JVM-specific dependencies blocks and JVM test suite interfaces."""
    
    errorprone {
        disabledChecks.addAll(
            "OverridesJavaxInjectableMethod", // 1 occurrences
            "UnusedMethod", // 1 occurrences
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncludedBuildLogicIntegrationTest.groovy

                ":compileJava",
                ":classes",
                ":jar",
                ":assemble"
            )
            fixture.assertStateStored()
    
            when:
            configurationCacheRun("assemble")
    
            then:
            result.assertTasksExecuted(
                ":processResources",
                ":compileJava",
                ":classes",
                ":jar",
                ":assemble"
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-api/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.implementation-java")
        id("gradlebuild.publish-public-libraries")
    }
    
    description = "Annotation classes used by the Declarative DSL"
    
    dependencies {
        implementation(projects.stdlibJavaExtensions)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 246 bytes
    - Viewed (0)
  9. platforms/software/maven/build.gradle.kts

        api(libs.guava)
        api(libs.inject)
        api(libs.jsr305)
        api(libs.maven3Model) {
            because("We use the metadata model classes to create POM metadata files for components")
        }
        api(libs.maven3RepositoryMetadata) {
            because("We use the metadata model classes to create repository metadata files")
        }
    
        implementation(project(":functional"))
        implementation(project(":hashing"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtSymbol.kt

         */
        SOURCE,
    
        /**
         * Declaration which do not have its PSI source and was generated, they are:
         * For regular classes, implicit default constructor is generated
         * For data classes the `copy`, `component{N}`, `toString`, `equals`, `hashCode` functions are generated
         * For enum classes the `valueOf` & `values` functions are generated
         * For lambda the `it` implicit parameter is generated
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 09:36:27 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top