Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,962 for buildFor (0.31 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/InitScriptExecutionIntegrationTest.groovy

        }
    
        private def createExternalJar() {
            ArtifactBuilder builder = artifactBuilder()
            builder.sourceFile('org/gradle/test/BuildClass.java') << '''
                package org.gradle.test;
                public class BuildClass { }
    '''
            builder.buildJar(file("repo/test-1.3.jar"))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftApplicationPluginTest.groovy

        }
    
        def "output locations reflects changes to buildDir"() {
            given:
            project.pluginManager.apply(SwiftApplicationPlugin)
            project.evaluate()
    
            when:
            project.buildDir = "output"
    
            then:
            def compileSwift = project.tasks.compileDebugSwift
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.9K bytes
    - Viewed (1)
  3. platforms/native/language-native/src/test/groovy/org/gradle/language/cpp/plugins/CppApplicationPluginTest.groovy

        }
    
        def "output locations reflects changes to buildDir"() {
            given:
            project.pluginManager.apply(CppApplicationPlugin)
            project.evaluate()
    
            when:
            project.buildDir = "output"
    
            then:
            def compileCpp = project.tasks.compileDebugCpp
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/test/groovy/org/gradle/nativeplatform/test/xctest/plugins/XCTestConventionPluginTest.groovy

            test.workingDirectory.get().asFile == projectDir.file("build/install/test")
        }
    
        def "output locations reflects changes to buildDir"() {
            when:
            project.pluginManager.apply(XCTestConventionPlugin)
            project.buildDir = project.file("output")
            project.evaluate()
    
            then:
            def compileSwift = project.tasks.compileTestSwift
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/configure/NativeBinaryRules.java

        }
    
        private static void assignToolsToStaticLibraryBinary(File buildDir, NativeBinarySpecInternal nativeBinary) {
            StaticLibraryBinarySpec staticLibrary = (StaticLibraryBinarySpec) nativeBinary;
            staticLibrary.setStaticLibraryFile(staticLibraryFileFor(nativeBinary, buildDir));
        }
    
        public static File executableFileFor(NativeBinarySpecInternal nativeBinary, File buildDir) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/ant/properties/groovy/build.gradle

    // tag::set-property[]
    ant.buildDir = buildDir
    ant.properties.buildDir = buildDir
    ant.properties['buildDir'] = buildDir
    ant.property(name: 'buildDir', location: buildDir)
    // end::set-property[]
    
    ant.importBuild 'build.xml'
    
    // tag::get-property[]
    println ant.antProp
    println ant.properties.antProp
    println ant.properties['antProp']
    // end::get-property[]
    
    // tag::set-reference[]
    ant.path(id: 'classpath', location: 'libs')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 673 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenFileRepoResolveIntegrationTest.groovy

            then:
            def buildDir = file('build')
            buildDir.assertHasDescendants(moduleA.artifactFile.name)
            buildDir.file(moduleA.artifactFile.name).assertIsCopyOf(moduleA.artifactFile)
    
            when:
            moduleA.dependsOn('group', 'projectB', '9.1')
            moduleA.publishWithChangedContent()
            run 'retrieve'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/ant/properties/kotlin/build.gradle.kts

    // tag::set-property[]
    ant.setProperty("buildDir", buildDir)
    ant.properties.set("buildDir", buildDir)
    ant.properties["buildDir"] = buildDir
    ant.withGroovyBuilder {
        "property"("name" to "buildDir", "location" to "buildDir")
    }
    // end::set-property[]
    
    ant.importBuild("build.xml")
    
    // tag::get-property[]
    println(ant.getProperty("antProp"))
    println(ant.properties.get("antProp"))
    println(ant.properties["antProp"])
    // end::get-property[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 860 bytes
    - Viewed (0)
  9. clause/expression.go

    	builder.WriteQuoted(lt.Column)
    	builder.WriteString(" < ")
    	builder.AddVar(builder, lt.Value)
    }
    
    func (lt Lt) NegationBuild(builder Builder) {
    	Gte(lt).Build(builder)
    }
    
    // Lte less than or equal to for where
    type Lte Eq
    
    func (lte Lte) Build(builder Builder) {
    	builder.WriteQuoted(lte.Column)
    	builder.WriteString(" <= ")
    	builder.AddVar(builder, lte.Value)
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Oct 10 06:45:48 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/AsmClassGeneratorUtils.java

            builder.append('T');
            builder.append(type.getName());
            builder.append(';');
        }
    
        private static void visitParameterizedType(ParameterizedType type, StringBuilder builder) {
            visitRawType(type.getRawType(), builder);
            builder.append('<');
            visitTypes(type.getActualTypeArguments(), builder);
            builder.append(">;");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top