Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,743 for scriptId (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/performance/script-a-application.png

    script-a-application.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 145K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/performance/script-b-application.png

    script-b-application.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 143.1K 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. build/README.md

    ## Key scripts
    
    The following scripts are found in the [`build/`](.) directory. Note that all scripts must be run from the Kubernetes root directory.
    
    * [`build/run.sh`](run.sh): Run a command in a build docker container.  Common invocations:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 07:20:57 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/internal/scripts/GradleScript.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.scripts;
    
    /**
     * Gradle script marker interface.
     */
    public interface GradleScript {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 06 18:07:44 UTC 2020
    - 732 bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/groovy/scripts/ScriptCompilationException.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.groovy.scripts;
    
    import org.gradle.api.GradleScriptException;
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    /**
     * A {@code ScriptCompilationException} is thrown when a script cannot be compiled.
     */
    @UsedByScanPlugin
    public class ScriptCompilationException extends GradleScriptException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. subprojects/core/src/test/groovy/org/gradle/groovy/scripts/EmptyScript.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.groovy.scripts;
    
    public class EmptyScript extends groovy.lang.Script {
        public Object run() {
            return null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:16:41 UTC 2013
    - 766 bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/plugin/use/PluginDependenciesSpec.java

    import org.gradle.api.provider.ProviderConvertible;
    
    /**
     * The DSL for declaring plugins to use in a script.
     * <p>
     * In a build script, the <code>plugins {}</code> script block API is of this type.
     * That is, you can use this API in the body of the plugins script block to declare plugins to be used for the script.
     * </p>
     * <h3>Relationship with the apply() method</h3>
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 16 17:46:02 UTC 2022
    - 6.9K bytes
    - Viewed (0)
Back to top