Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 276 for scriptId (0.13 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompiler.kt

            INVOKEVIRTUAL(
                KotlinScriptHost::class.internalName,
                "getScriptSource",
                "()Lorg/gradle/groovy/scripts/ScriptSource;"
            )
            INVOKESPECIAL(
                pluginRequestCollectorType,
                "<init>",
                "(Lorg/gradle/groovy/scripts/ScriptSource;)V"
            )
            ASTORE(Vars.PluginRequestCollector)
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    ----
    ====
    
    Note that <<init_scripts.adoc#init_scripts, initialization scripts>> can't read Gradle properties directly.
    The earliest Gradle properties can be read in initialization scripts is on `settingsEvaluated {}`:
    
    *Example 5:* Reading Gradle properties from initialization scripts:
    ====
    include::sample[dir="snippets/tutorial/gradleProperties/kotlin",files="init.gradle.kts[tags=gradle-properties]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    link:{javadocPath}/org/gradle/process/ExecOperations.html[`ExecOperations`] is a service that provides methods for executing external processes (commands) from within a build script.
    It is part of the `org.gradle.process.internal` package and is typically used in custom tasks or plugins to run command-line tools or scripts as part of the build process.
    
    You can obtain an instance of `ExecOperations` using the `project.exec` property.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ExternalProcessFixture.groovy

    import java.util.function.Function
    
    /**
     * Helper to test {@code exec} and {@code javaexec} methods on scripts and {@code ExecOperations}.
     */
    class ExternalProcessFixture {
        private final TestFile testDirectory
        private final ShellScript testExecutable = ShellScript.builder()
            .printText("Hello from script")
            .writeTo(testDirectory, "test")
    
        ExternalProcessFixture(TestFile testDirectory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    The type used in the build script's `configure` function (`GreetingPluginExtension`) must match the extension type.
    Then, when the block is executed, the receiver of the block is the extension.
    
    [.multi-language-text.lang-groovy]
    In this example, several settings can be grouped within the `greeting` closure. The name of the closure block in the build script (`greeting`) must match the extension object name.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-tooling-builders/src/main/kotlin/org/gradle/kotlin/dsl/tooling/builders/internal/IsolatedProjectsSafeKotlinDslScriptsModelBuilder.kt

    }
    
    
    private
    fun precompiledScriptModelsFor(project: ProjectInternal): List<IntermediateScriptModel> {
        return project.discoverPrecompiledScriptPluginScripts().map {
            // TODO:isolated support precompiled scripts
            IntermediateScriptModel(it, ClassPath.EMPTY, ClassPath.EMPTY, emptyList())
        }
    }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 11:06:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    You can either implement the missing pieces yourself or <<ant#sec:using_ant_tasks,use existing Ant tasks>>.
    +
    The alternative approach is to <<ant#sec:import_ant_build,import the Ant build>> into the Gradle build script and gradually replace the Ant build functionality.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    val dslMetaData by tasks.registering(ExtractDslMetaDataTask::class) {
        source(gradleApiSources)
        destinationFile = generatedBinFileFor("dsl-meta-data.bin")
    }
    
    // List of packages that are imported by default in Gradle build scripts
    val defaultImports = tasks.register("defaultImports", GenerateDefaultImports::class) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. samples/bookinfo/src/productpage/templates/productpage.html

    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    {% endblock %}
    
    <title>Simple Bookstore App</title>
    {% block scripts %}
    <script src="static/tailwind/tailwind.css"></script>
    <script type="text/javascript">
      window.addEventListener("DOMContentLoaded", (event) => {
        const dialog = document.querySelector("dialog");
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    The main difference between writing rules and defining dependencies and artifacts in the build script is that component metadata rules, following the structure of Gradle Module Metadata, operate on <<variant_model.adoc#understanding-variant-selection,variants>> directly.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top