Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,743 for scriptId (0.15 sec)

  1. src/packaging/common/packaging.properties

    packaging.os.max.map.count=262144
    
    # Simple marker to check that properties are correctly overridden
    packaging.type=tar.gz
    
    # Custom header for package scripts
    packaging.scripts.header=
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 797 bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/groovy/scripts/DefaultScriptTest.groovy

            when:
            DefaultScript script = new GroovyShell(createBaseCompilerConfiguration()).parse(testScriptText)
            ProjectInternal testProject = TestUtil.create(temporaryFolder).rootProject()
            testProject.ext.custom = 'true'
            script.setScriptSource(new TextResourceScriptSource(new StringTextResource('script', '//')))
            script.init(testProject, serviceRegistryMock)
            script.run();
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 19 14:14:29 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/scripts/JavaAppStartScriptGenerationDetails.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.jvm.application.scripts;
    
    import javax.annotation.Nullable;
    import java.util.List;
    
    /**
     * Details for generating Java-based application start scripts.
     */
    public interface JavaAppStartScriptGenerationDetails {
    
        /**
         * The display name of the application
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/ScriptSourceListener.java

     * limitations under the License.
     */
    
    package org.gradle.groovy.scripts.internal;
    
    import org.gradle.groovy.scripts.ScriptSource;
    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    
    @EventScope(Scope.Build.class)
    public interface ScriptSourceListener {
    
        /**
         * Called when remote script was applied.
         */
        void scriptSourceObserved(ScriptSource scriptSource);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1007 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr4_settings_file.adoc

    == Step 1. Gradle scripts
    
    Build scripts and setting files are code.
    They are written in Kotlin or Groovy.
    
    You use the link:{kotlinDslPath}[Kotlin DSL], link:{groovyDslPath}[Groovy DSL] and link:{javadocPath}[Gradle APIs] to write the scripts.
    
    The methods that can be used within a Gradle script primarily include:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/groovy/scripts/ScriptCompilerFactory.java

     */
    package org.gradle.groovy.scripts;
    
    /**
     * A factory for script compilers.
     */
    public interface ScriptCompilerFactory {
        /**
         * Creates a compiler for the given source. The returned compiler can be used to compile the script into various
         * different forms.
         *
         * @param source The script source.
         * @return a compiler which can be used to compiler the script.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/StatementLabelsScriptTransformer.java

            return Phases.CANONICALIZATION;
        }
    
        @Override
        public void call(final SourceUnit source) throws CompilationFailedException {
            // currently we only look in script code; could extend this to build script classes
            AstUtils.visitScriptCode(source, new ClassCodeVisitorSupport() {
                @Override
                protected SourceUnit getSourceUnit() {
                    return source;
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 22 10:43:11 UTC 2021
    - 2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    project script behaves as if the body of the script is enclosed within a `with(project) { ... }` block, a settings script as if the body of the script is enclosed within a `with(settings) { ... }` block and an init script as if the body of the script is enclosed within a `with(gradle) { ... }` block. This implies the corresponding model object is also available as a property in the body of the script, the `project` property for project scripts, the `settings` property for settings scripts and the...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/PluginManagementDslSpec.groovy

            failure.assertThatCause(containsString("Only Settings scripts can contain a pluginManagement {} block."))
            includesLinkToUserguide()
    
            and:
            verifyAll(receivedProblem) {
                fqid == 'compilation:groovy-dsl:compilation-failed'
                contextualLabel == "Could not compile initialization script '${initScript.absolutePath}'."
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. pkg/ctrlz/assets/templates/layouts/base.html

            <!-- libraries we pull in -->
            <script src="/js/jquery-3.2.1.slim.min.js"></script>
            <script src="/js/popper-1.12.9.min.js"></script>
            <script src="/js/bootstrap-4.0.0.min.js"></script>
            <script src="/js/clipboard-1.7.1.min.js"></script>
            <script src="/js/prism-1.14.0.min.js"></script>
    
            <!-- our own scripts -->
            <script src="/js/misc.js"></script>
        </body>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top