Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,242 for scriptId (0.2 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. platforms/documentation/docs/src/docs/release/content/script.js

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/snippets/groovy/quickstart/kotlin/src/main/resources/script.groovy

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 64 bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinScript.kt

    
    /**
     * Base contract for all Gradle Kotlin DSL scripts.
     *
     * This is the Kotlin flavored equivalent of [org.gradle.api.Script].
     *
     * It is not implemented directly by the IDE script templates to overcome ambiguous conflicts and Kotlin language
     * limitations.
     *
     * @since 6.0
     */
    interface KotlinScript {
    
        /**
         * Logger for scripts. You can use this in your script to write log messages.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/groovy/quickstart/groovy/src/main/resources/script.groovy

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 64 bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/integTest/resources/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest/canCreateAndDeleteMetaData/groovyproject/src/main/groovy/script.groovy

    Tom Tresansky <******@****.***> 1690489935 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - Viewed (0)
  10. 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)
Back to top