Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 166 for Classes (0.15 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestTaskToolchainIntegrationTest.groovy

                    destinationDirectory = buildDir.dir("classes/java/test")
                    sourceCompatibility = "${compileJavaVersion}"
                    targetCompatibility = "${compileJavaVersion}"
                }
    
                task test(type: Test) {
                    testClassesDirs = buildDir.files("classes/java/test")
                    classpath = files(configurations.testImplementation, buildDir.dir("classes/java/test"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/CrossCompilationIntegrationTest.groovy

            run("build")
    
            then:
            new JarTestFixture(file("build/libs/oldjava.jar")).javaVersion == version
            getClassMajorVersion(file ( "build/classes/java/main/Thing.class")) == TestJavaClassUtil.getClassVersion(version)
            getClassMajorVersion(file("build/classes/java/test/ThingTest.class")) == TestJavaClassUtil.getClassVersion(version)
            new DefaultTestExecutionResult(testDirectory).assertTestClassesExecuted("ThingTest")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 08:31:21 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DaemonJavaCompiler.java

            JavaLanguageVersion javaLanguageVersion = JavaLanguageVersion.of(forkingSpec.getJavaLanguageVersion());
            if (javaLanguageVersion.canCompileOrRun(9)) {
                // In JDK 9 and above the compiler internal classes are bundled with the rest of the JDK, but we need to export it to gain access.
                javaForkOptions.jvmArgs(
                    "--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. platforms/software/security/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Shared classes for projects requiring GPG support"
    
    errorprone {
        disabledChecks.addAll(
            "DefaultCharset", // 1 occurrences
        )
    }
    
    dependencies {
        api(project(":core-api"))
        api(project(":resources"))
    
        api(libs.bouncycastlePgp)
        api(libs.jsr305)
    
        implementation(projects.stdlibJavaExtensions)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.implementation-kotlin")
        id("gradlebuild.publish-public-libraries")
    
        embeddedKotlin("plugin.serialization")
    }
    
    description = "Common shared classes used by the Declarative DSL"
    
    tasks.withType<KotlinCompile>().configureEach {
        compilerOptions {
            apiVersion.set(KotlinVersion.KOTLIN_1_9)
            languageVersion.set(KotlinVersion.KOTLIN_1_9)
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/CrossProjectMultipleVariantSelectionIntegrationTest.groovy

                        artifact name: 'main', extension: '', type: 'java-classes-directory'
                    }
                    project(":lib", "test:lib:") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:47:05 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtDeclarationSymbol.kt

    import org.jetbrains.kotlin.analysis.api.symbols.markers.KaSymbolWithTypeParameters
    
    /**
     * Represents a symbol of declaration which can be directly expressed in source code.
     * Eg, classes, type parameters or functions are [KaDeclarationSymbol], but files and packages are not
     */
    public sealed interface KaDeclarationSymbol : KaSymbol, KaSymbolWithTypeParameters, KaAnnotatedSymbol
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 779 bytes
    - Viewed (0)
  8. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesMultiTargetIntegrationTest.groovy

                                            // .collect() is intentional for a better error message on failure
                                            // The 6 elements are: junit, hamcrest, test classes and resources, main classes and resources
                                            assert classpath.collect().size() == 6
                                            assert classpath.any { it.name == "junit-${JUnit4TestToolchain.DEFAULT_VERSION}.jar" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/package-info.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Contains classes implementing an enhanced dependency resolution API, intended to
     * replace resolvable configurations.
     */
    @org.gradle.api.NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 826 bytes
    - Viewed (0)
  10. subprojects/build-events/build.gradle.kts

        testImplementation(project(":model-core"))
    
        integTestImplementation(project(":logging")) {
            because("This isn't declared as part of integtesting's API, but should be as logging's classes are in fact visible on the API")
        }
        integTestImplementation(project(":build-option"))
        integTestImplementation(project(":enterprise-operations"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top