Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 380 for scriptDsl (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/configuration/project/DefaultCompileOperationFactory.java

    import org.gradle.configuration.ScriptTarget;
    import org.gradle.groovy.scripts.ScriptSource;
    import org.gradle.groovy.scripts.internal.BuildScriptData;
    import org.gradle.groovy.scripts.internal.BuildScriptDataSerializer;
    import org.gradle.groovy.scripts.internal.BuildScriptTransformer;
    import org.gradle.groovy.scripts.internal.CompileOperation;
    import org.gradle.groovy.scripts.internal.FactoryBackedCompileOperation;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/tasks/CreateStartScripts.java

    import org.gradle.jvm.application.scripts.ScriptGenerator;
    import org.gradle.util.internal.GUtil;
    import org.gradle.work.DisableCachingByDefault;
    
    import javax.annotation.Nullable;
    import javax.inject.Inject;
    import java.io.File;
    import java.util.Collections;
    import java.util.LinkedList;
    import java.util.stream.Collectors;
    
    /**
     * Creates start scripts for launching JVM applications.
     * <p>
     * Example:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-application/src/main/java/org/gradle/api/tasks/application/CreateStartScripts.java

     * <p>
     * The task generates separate scripts targeted at Microsoft Windows environments and UNIX-like environments (e.g. Linux, macOS).
     * The actual generation is implemented by the {@link #getWindowsStartScriptGenerator()} and {@link #getUnixStartScriptGenerator()} properties, of type
     * {@link org.gradle.jvm.application.scripts.ScriptGenerator}.
     * <p>
     * Example:
     * <pre class='autoTested'>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/initialization/InitScriptHandlerTest.groovy

        }
    
        def "does nothing when there are no init scripts"() {
            given:
            startParameter.allInitScripts >> []
    
            when:
            handler.executeScripts(gradle)
    
            then:
            0 * executor._
            0 * processor._
        }
    
        def "finds and processes init scripts"() {
            File script1 = testDirectoryProvider.createFile("script1.gradle")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. hack/make-rules/update.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # A single script that runs a predefined set of update-* scripts, as they often go together.
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    SILENT=${SILENT:-true}
    ALL=${FORCE_ALL:-false}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    _You don't have to migrate all at once!_ Both Groovy and Kotlin-based build scripts can `apply` other scripts of either language. You can find inspiration for any Gradle features not covered in the link:https://github.com/gradle/kotlin-dsl/tree/master/samples[Kotlin DSL samples].
    
    
    == Prepare your Groovy scripts
    
    Some simple Kotlin and Groovy language differences can make converting scripts tedious:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

         */
        public List<File> getInitScripts() {
            return Collections.unmodifiableList(initScripts);
        }
    
        /**
         * Returns all init scripts, including explicit init scripts and implicit init scripts.
         *
         * @return All init scripts, including explicit init scripts and implicit init scripts.
         */
        public List<File> getAllInitScripts() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  10. scripts/format.sh

    #!/bin/sh -e
    set -x
    
    ruff check fastapi tests docs_src scripts --fix
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 30 00:03:14 UTC 2024
    - 112 bytes
    - Viewed (0)
Back to top