Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,743 for scriptId (0.21 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/ScriptRunnerFactory.java

     * limitations under the License.
     */
    package org.gradle.groovy.scripts.internal;
    
    import org.gradle.groovy.scripts.Script;
    import org.gradle.groovy.scripts.ScriptRunner;
    import org.gradle.groovy.scripts.ScriptSource;
    
    public interface ScriptRunnerFactory {
        <T extends Script, M> ScriptRunner<T, M> create(CompiledScript<T, M> scriptClass, ScriptSource source, ClassLoader contextClassLoader);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 978 bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinInitScript.kt

    import org.gradle.kotlin.dsl.support.KotlinScriptHost
    import kotlin.script.extensions.SamWithReceiverAnnotations
    import kotlin.script.templates.ScriptTemplateAdditionalCompilerArguments
    import kotlin.script.templates.ScriptTemplateDefinition
    
    
    /**
     * Legacy base class for Gradle Kotlin DSL standalone [Gradle] scripts IDE support, aka. init scripts.
     *
     * @see KotlinGradleScriptTemplate
     */
    @ScriptTemplateDefinition(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/PluginUseDslIntegrationSpec.groovy

            failure.assertThatCause(containsString("Only Project and Settings build scripts can contain plugins {} blocks"))
            includesLinkToUserguide()
        }
    
        def "script plugins applied to arbitrary objects cannot have plugin blocks"() {
            def scriptPlugin = file("plugin.gradle")
    
            when:
            scriptPlugin << "plugins {}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinGradleScriptTemplate.kt

    import org.gradle.kotlin.dsl.support.defaultKotlinScriptHostForGradle
    import kotlin.script.experimental.annotations.KotlinScript
    import kotlin.script.experimental.api.baseClass
    import kotlin.script.experimental.api.filePathPattern
    import kotlin.script.experimental.api.implicitReceivers
    import kotlin.script.templates.ScriptTemplateDefinition
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/internal/scripts/ScriptFileResolver.java

     * limitations under the License.
     */
    package org.gradle.internal.scripts;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.scripts.ScriptingLanguage;
    
    import javax.annotation.Nullable;
    import java.io.File;
    import java.util.List;
    
    /**
     * Resolves script files according to available {@link ScriptingLanguage} providers.
     *
     * @since 4.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/go/internal/vcweb/vcweb.go

    // regenerates the repository using a script interpreted by a [script.Engine].
    // The script produces the server's contents for a corresponding root URL and
    // all subdirectories of that URL, which are then cached: subsequent requests
    // for any URL generated by the script will serve the script's previous output
    // until the script is modified.
    //
    // The script engine includes all of the engine's default commands and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/doc/c4/C4_3_Component.puml

                Component(providerScriptTemplates, "Script Templates", "One per script target type, define scripts API, declare Kotlin compiler settings and plugins, declare editor dependencies resolver")
    
                Component(providerExecution, "Kotlin DSL Execution", "Partial evaluation interpreter for `.gradle.kts` scripts")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/configuration/ScriptTarget.java

     * limitations under the License.
     */
    
    package org.gradle.configuration;
    
    import groovy.lang.Script;
    import org.gradle.api.internal.plugins.PluginManagerInternal;
    import org.gradle.groovy.scripts.BasicScript;
    import org.gradle.groovy.scripts.internal.Permits;
    
    /**
     * A view over the target of a script. Represents the DSL that will be applied to the target.
     */
    public interface ScriptTarget {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 09 11:18:20 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/LocationAwareScriptEvaluationIntegrationTest.kt

            withBuildScript("""apply(from = "other.gradle.kts")""")
            val script = withFile("other.gradle.kts", boom)
    
            assertFailingBuildOutputOf("help") {
                """
                * Where:
                Script '${script.canonicalPath}' line: 1
                """
            }
        }
    
        @Test
        fun `location of exception thrown from applied script with same filename is reported`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/internal/scripts/CompileScriptBuildOperationType.java

        public interface Details {
            /**
             * The build script backing language.
             * The language should be upper case. E.g GROOVY
             * */
            String getLanguage();
    
            /**
             * The compile stage as a descriptive String.
             * Build scripts can be processed in multiple stages, depending on the language.
             * Groovy backed build scripts are processed in two stages.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top