Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 496 for scriptId (0.16 sec)

  1. platforms/documentation/docs/src/docs/dsl/dsl.xml

            <para>There are a few basic concepts that you should understand, which will help you write Gradle scripts.</para>
    
            <para>First, Gradle scripts are <firstterm>configuration scripts</firstterm>. As the script executes, it
                configures an object of a particular type. For example, as a build script executes, it configures an
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

                        File("added.init.gradle.kts") to TestHashCodes.hashCodeFrom(2)
                    )
                ),
                equalTo("init script 'added.init.gradle.kts' has been added")
            )
        }
    
        @Test
        fun `added init scripts are reported`() {
            assertThat(
                invalidationReasonForInitScriptsChange(
                    from = listOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/groovy/scripts/TextResourceScriptSourceTest.java

        @Before
        public void setUp() throws URISyntaxException {
            testDir = tmpDir.createDir("scripts");
            scriptFile = new File(testDir, "build.script");
            scriptFileUri = scriptFile.toURI();
            createJar();
        }
    
        private URI createJar() throws URISyntaxException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 15 01:04:05 UTC 2023
    - 12K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/ProjectConfigurationChildrenProgressCrossVersionSpec.groovy

            events.assertIsABuild()
    
            and:
            events.operation('Configure project :').descendants {
                it.descriptor.displayName.contains("Apply script")
            }.isEmpty()
        }
    
        def "generates events for applied build scripts"() {
            given:
            settingsFile << '''
                rootProject.name = 'multi'
                include 'a', 'b'
            '''.stripIndent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/api/groovy_build_script_primer.adoc

    This example reflects how every Groovy build script is backed by an implicit instance of `Project`. If you see an unqualified element and you don't know where it's defined, always check the `Project` API documentation to see if that's where it's coming from.
    
    [CAUTION]
    --
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java

     * when using the wrapper scripts.
     *
     * <p>The scripts generated by this task are intended to be committed to your version control system. This task also
     * generates a small {@code gradle-wrapper.jar} bootstrap JAR file and properties file which should also be committed to
     * your VCS. The scripts delegates to this JAR.
     */
    @DisableCachingByDefault(because = "Updating the wrapper is not worth caching")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    ====
    
    [[script-default-imports]]
    == Default imports
    
    To make build scripts more concise, Gradle automatically adds a set of import statements to scripts.
    
    As a result, instead of writing `throw new org.gradle.api.tasks.StopExecutionException()`, you can write `throw new StopExecutionException()` instead.
    
    Gradle implicitly adds the following imports to each script:
    
    .Gradle default imports
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr5_build_scripts.adoc

    4. You viewed a Settings file in <<partr4_settings_file.adoc#part4_begin,part 4>>.
    
    == Step 1. The `Project` object
    
    Build scripts invoke Gradle APIs to configure the build.
    
    During the configuration phase, Gradle finds the build script(s) in the root and subproject directories.
    
    When a build script, `build.gradle(.kts)`, is found, Gradle configures a link:{javadocPath}/org/gradle/api/Project.html[Project] object.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. Makefile.core.mk

    	GOOS=linux GOARCH=amd64 LDFLAGS=$(RELEASE_LDFLAGS) common/scripts/gobuild.sh $@ ./istioctl/cmd/istioctl
    ${TARGET_OUT}/release/istioctl-linux-armv7:
    	GOOS=linux GOARCH=arm GOARM=7 LDFLAGS=$(RELEASE_LDFLAGS) common/scripts/gobuild.sh $@ ./istioctl/cmd/istioctl
    ${TARGET_OUT}/release/istioctl-linux-arm64:
    	GOOS=linux GOARCH=arm64 LDFLAGS=$(RELEASE_LDFLAGS) common/scripts/gobuild.sh $@ ./istioctl/cmd/istioctl
    ${TARGET_OUT}/release/istioctl-osx:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginIntegrationTest.kt

    import java.io.File
    
    
    @LeaksFileHandles("Kotlin Compiler Daemon working directory")
    class PrecompiledScriptPluginIntegrationTest : AbstractKotlinIntegrationTest() {
    
        @Test
        fun `can apply precompiled script plugin from groovy script`() {
    
            withKotlinBuildSrc()
            withFile(
                "buildSrc/src/main/kotlin/my-plugin.gradle.kts",
                """
                tasks.register("myTask") {}
                """
            )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:16:19 UTC 2023
    - 11.3K bytes
    - Viewed (0)
Back to top