Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 766 for scriptId (0.33 sec)

  1. subprojects/core/src/test/groovy/org/gradle/configuration/BuildOperationScriptPluginTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.configuration
    
    import org.gradle.groovy.scripts.ScriptSource
    import org.gradle.internal.Describables
    import org.gradle.internal.code.DefaultUserCodeApplicationContext
    import org.gradle.internal.operations.TestBuildOperationRunner
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 3K 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. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_plugins.adoc

    === 4. Apply the script plugin
    Finally, apply the local plugin in the build script.
    
    [source]
    ----
    apply<MyPlugin>()
    ----
    
    When `MyPlugin` is applied in the build script, Gradle calls the `fun apply() {}` method defined in the custom `MyPlugin` class.
    
    This makes the plugin available to the application.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 00:36:58 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr2_build_lifecycle.adoc

    ----
    println('SETTINGS FILE: This is executed during the initialization phase')
    ----
    =====
    
    == Step 3. Update the Build Script
    
    Add the following lines to the bottom of the Build script:
    
    [.multi-language-sample]
    =====
    .app/build.gradle.kts
    [source, kotlin]
    ----
    println("BUILD SCRIPT: This is executed during the configuration phase")
    
    tasks.register("task1"){
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 05:44:04 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. subprojects/core/src/testFixtures/groovy/org/gradle/process/ShellScript.groovy

         */
        abstract List<String> getCommandLine();
    
        /**
         * Returns a command line elements that can be used to start this script.
         * The resulting list can be used as an argument for the {@link ProcessBuilder} or Groovy's {@code execute} method.
         * The first element of the list is the command interpreter (sh or cmd depending on the platform).
         * The list also contains a path to the script relative to {@code baseDir}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. build/tools.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // This package imports things required by build scripts and test packages of submodules, to force `go mod` to see them as dependencies
    package tools
    
    import (
    	// build script dependencies
    	_ "github.com/onsi/ginkgo/v2/ginkgo"
    	_ "k8s.io/code-generator/cmd/deepcopy-gen"
    	_ "k8s.io/code-generator/cmd/defaulter-gen"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. ci/official/envs/ci_default

    # (error on undefined variables). This ensures that (a) every TFCI variable
    # has an explicit default value, and (b) no script can accidentally use a
    # variable that doesn't exist. Please keep this list in alphabetical order.
    #
    # Find usage in scripts with e.g.:
    #   cd ci/official
    #   ls *.sh utilities/*.sh | xargs grep -H --color=always TFCI_ARG_HERE
    # You may also get an overview, e.g.:
    #   cd ci/official
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 21:16:27 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/gradle_directories.adoc

    <6> Scripts for executing builds using the <<gradle_wrapper.adoc#gradle_wrapper_reference,Gradle Wrapper>>.
    <7> The project's <<settings_file_basics.adoc#sec:settings_file_script, settings file>> where the list of subprojects is defined.
    <8> Usually, a project is organized into one or multiple subprojects.
    <9> Each subproject has its own Gradle build script.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top