Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 418 for scriptId (0.2 sec)

  1. hack/jenkins/test-dockerized.sh

    # reports in ${WORKSPACE}/artifacts. This script is intended to be run from
    # kubekins-test container with a kubernetes repo mapped in. See
    # k8s.io/test-infra/scenarios/kubernetes_verify.py
    
    export PATH=${GOPATH}/bin:${PWD}/third_party/etcd:/usr/local/go/bin:${PATH}
    
    # Until all GOPATH references are removed from all build scripts as well,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/scripts/package-info.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /**
     * Classes that enable JVM application script generation.
     */
    @NonNullApi
    package org.gradle.jvm.application.scripts;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 774 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/ide/problems-api-usage/groovy/reporters/script-plugin/src/main/groovy/reporters.script.plugin.gradle

    def gradleInternal = gradle as GradleInternal
    def problems = gradleInternal.services.get(Problems)
    
    problems.forNamespace('buildscript').reporting {
        it.id('adhoc-script-deprecation', 'Deprecated script plugin')
            .contextualLabel("Deprecated script plugin 'demo-script-plugin'")
            .severity(Severity.WARNING)
            .solution("Please use 'standard-plugin-2' instead of this plugin")
    }
    
    tasks.register('warningTask') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/build/BuildLayoutValidator.java

    import java.util.List;
    
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.UserInput;
    import static org.gradle.internal.scripts.ScriptFileUtil.getValidBuildFileNames;
    import static org.gradle.internal.scripts.ScriptFileUtil.getValidSettingsFileNames;
    
    @ServiceScope(Scope.BuildSession.class)
    public class BuildLayoutValidator {
        private final BuildLayoutFactory buildLayoutFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 07:26:30 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/GroovyCodecs.kt

        fun WriteContext.writeReference(value: Any?) {
            // Cannot warn about a script reference here, because we don't know whether the closure will attempt to use the script object when it executes,
            // and since almost every closure in a Groovy build script legitimately has the script as an owner, this will generate false problems.
            // So instead, warn when the script object is used by the closure when executing
            writeEnum(
                when {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. hack/jenkins/benchmark-dockerized.sh

    # in ${WORKSPACE}/artifacts. This script can also be run within a
    # kubekins-test container with a kubernetes repo mounted (at the path
    # /go/src/k8s.io/kubernetes).
    
    export PATH=${GOPATH}/bin:${PWD}/third_party/etcd:/usr/local/go/bin:${PATH}
    
    # Until all GOPATH references are removed from all build scripts as well,
    # explicitly disable module mode to avoid picking up user-set GO111MODULE preferences.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleIsolationIntegrationTest.groovy

                }
                gradle.lifecycle.afterProject {
                    println log
                }
            '''
    
            def script = '''
                println "$name with version $version"
                version = 'from script'
            '''
            buildFile script
            groovyFile 'sub/build.gradle', script
    
            when:
            succeeds 'help'
    
            then:
            outputContains 'root with version from action'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/SettingsInternal.java

         *
         * Gradle runtime.
         */
        ClassLoaderScope getBaseClassLoaderScope();
    
        /**
         * The scope for this settings object.
         *
         * Gradle runtime + this object's script's additions.
         */
        ClassLoaderScope getClassLoaderScope();
    
        ServiceRegistry getServices();
    
        @Override
        BuildCacheConfigurationInternal getBuildCache();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/initialization/InitScript.java

    import org.gradle.groovy.scripts.DefaultScript;
    
    public abstract class InitScript extends DefaultScript {
        public ScriptHandler getInitscript() {
            return getBuildscript();
        }
    
        public void initscript(Closure configureClosure) {
            buildscript(configureClosure);
        }
    
        @Override
        public String toString() {
            return "initialization script";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/GradleInternal.java

        String contextualize(String description);
    
        PublicBuildPath getPublicBuildPath();
    
        /**
         * The basis for project build scripts.
         *
         * It is the Gradle runtime + buildSrc's contributions.
         * This is used as the parent scope for the root project's build script, and all script plugins.
         *
         * This is only on this object for convenience due to legacy.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top