Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 739 for scriptDsl (0.17 sec)

  1. subprojects/core/src/main/java/org/gradle/configuration/CompileOperationFactory.java

     * limitations under the License.
     */
    
    package org.gradle.configuration;
    
    import org.gradle.groovy.scripts.ScriptSource;
    import org.gradle.groovy.scripts.internal.BuildScriptData;
    import org.gradle.groovy.scripts.internal.CompileOperation;
    
    public interface CompileOperationFactory {
        CompileOperation<?> getPluginsBlockCompileOperation(ScriptTarget initialPassScriptTarget);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 27 10:51:55 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/ScriptRunnerFactory.java

     * See the License for the specific language governing permissions and
     * 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 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 978 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/kotlin/Module.md

    # Package org.gradle.kotlin.dsl
    
    The `org.gradle.kotlin.dsl` package contains the Gradle Kotlin DSL public API.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 22:09:08 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. ci/official/README.md

    ### Brief System Overview
    
    The top-level scripts and utility scripts should be fairly well-documented. Here
    is a brief explanation of how they tie together:
    
    1.  `envs/*` are lists of variables made with bash syntax. A user must set a
        `TFCI` env param pointing to a list of `env` files.
    2.  `utilities/setup.sh`, initialized by all top-level scripts, reads and sets
        values from those `TFCI` paths.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptRunnerFactory.java

     * limitations under the License.
     */
    package org.gradle.groovy.scripts.internal;
    
    import org.gradle.api.GradleScriptException;
    import org.gradle.groovy.scripts.Script;
    import org.gradle.internal.scripts.ScriptExecutionListener;
    import org.gradle.groovy.scripts.ScriptRunner;
    import org.gradle.groovy.scripts.ScriptSource;
    import org.gradle.internal.reflect.Instantiator;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 02 17:39:25 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/internal/scripts/CompileScriptBuildOperationType.java

             * */
            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.
             * Kotlin backed build scripts are processed in three stages
             * */
            String getStage();
        }
    
        public interface Result {
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. docs/en/docs/contributing.md

    ### Docs Structure
    
    The documentation uses <a href="https://www.mkdocs.org/" class="external-link" target="_blank">MkDocs</a>.
    
    And there are extra tools/scripts in place to handle translations in `./scripts/docs.py`.
    
    !!! tip
        You don't need to see the code in `./scripts/docs.py`, you just use it in the command line.
    
    All the documentation is in Markdown format in the directory `./docs/en/`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 17:42:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/RemappingScriptSource.java

     */
    package org.gradle.groovy.scripts.internal;
    
    import org.gradle.groovy.scripts.DelegatingScriptSource;
    import org.gradle.groovy.scripts.ScriptSource;
    
    /**
     * When stored into the persistent store, we want the script to be created with a predictable class name: we don't want the path of the script
     * to be used in the generated class name because the same contents can be used for scripts found in different paths. Since we are storing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 1.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/initialization/DirectoryInitScriptFinder.java

    import org.gradle.internal.scripts.DefaultScriptFileResolver;
    
    import javax.annotation.Nullable;
    import java.io.File;
    import java.util.Collection;
    import java.util.Collections;
    import java.util.List;
    
    public abstract class DirectoryInitScriptFinder implements InitScriptFinder {
    
        protected void findScriptsInDir(File initScriptsDir, Collection<File> scripts) {
            if (!initScriptsDir.isDirectory()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 11 12:55:11 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/buildCache/cacheable-bundle/kotlin/build.gradle.kts

    tasks.register<NpmTask>("bundle") {
        args = listOf("run", "bundle")
    
        outputs.cacheIf { true }
    
        inputs.dir(file("scripts"))
            .withPropertyName("scripts")
            .withPathSensitivity(PathSensitivity.RELATIVE)
    
        inputs.files("package.json", "package-lock.json")
            .withPropertyName("configFiles")
            .withPathSensitivity(PathSensitivity.RELATIVE)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top