Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 418 for scriptId (0.19 sec)

  1. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/build_file_basics.adoc

    [[sec:build_script]]
    == Build scripts
    
    The build script is either a `build.gradle` file written in Groovy or a `build.gradle.kts` file in Kotlin.
    
    The link:{groovyDslPath}/index.html[Groovy DSL^] and the link:{kotlinDslPath}/index.html[Kotlin DSL^] are the only accepted languages for Gradle scripts.
    
    Let's take a look at an example and break it down:
    
    ====
    [.multi-language-sample]
    =====
    .build.gradle.kts
    [source,kotlin]
    ----
    plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. build-logic/jvm/src/main/kotlin/gradlebuild.start-scripts.gradle.kts

    configurations {
        create("gradleScriptsElements") {
            isVisible = false
            isCanBeResolved = false
            isCanBeConsumed = true
            attributes.attribute(Usage.USAGE_ATTRIBUTE, objects.named("start-scripts"))
            outgoing.artifact(startScripts)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. src/cmd/go/scriptreadme_test.go

    Each script is a text archive (go doc internal/txtar).
    The script begins with an actual command script to run
    followed by the content of zero or more supporting files to
    create in the script's temporary file system before it starts executing.
    
    As an example, run_hello.txt says:
    
    	# hello world
    	go run hello.go
    	stderr 'hello world'
    	! stdout .
    
    	-- hello.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/containingDeclarationProvider/containingModuleByFile/script.kts

    Yan Zhulanow <******@****.***> 1710406416 +0900
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 22 16:00:27 UTC 2024
    - 15 bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/language/coverage.go

    	}
    	return reg
    }
    
    // Scripts returns the list of supported scripts. As all scripts are in a
    // consecutive range, it simply returns a slice of numbers in increasing order.
    // The "undefined" script is not returned.
    func (s allSubtags) Scripts() []Script {
    	scr := make([]Script, language.NumScripts)
    	for i := range scr {
    		scr[i] = Script{language.Script(i + 1)}
    	}
    	return scr
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/build/KotlinDslTestProjectInitiation.groovy

        }
    
        TestFile withDefaultSettingsGroovyIn(String baseDir) {
            return withSettingsGroovyIn(baseDir, defaultSettingsScript)
        }
    
        TestFile withSettingsGroovyIn(String baseDir, String script) {
            return withFile("$baseDir/$settingsFileName", script)
        }
    
        TestFile withBuildScript(String script = "") {
            return withBuildScriptIn(".", script)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. 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)
  8. subprojects/core-api/src/main/java/org/gradle/internal/scripts/ScriptFileResolver.java

     * limitations under the License.
     */
    package org.gradle.internal.scripts;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.scripts.ScriptingLanguage;
    
    import javax.annotation.Nullable;
    import java.io.File;
    import java.util.List;
    
    /**
     * Resolves script files according to available {@link ScriptingLanguage} providers.
     *
     * @since 4.0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. hack/make-rules/update.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # 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}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/InitScriptExecutionIntegrationTest.groovy

        def "init script file is a dotfile"() {
            def initScript = file('.empty')
            initScript << 'println "greetings from empty init script"'
            executer.withArguments('--init-script', initScript.absolutePath)
    
            when:
            run()
    
            then:
            output.contains("greetings from empty init script")
        }
    
        private def createExternalJar() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top