Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 171 for scriptId (0.15 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncludedBuildScriptChangesIntegrationTest.groovy

            when:
            build()
    
            then:
            outputContains fixture.expectedOutputBeforeChange
            configurationCache.assertStateStored()
    
            when:
            build()
    
            then: 'scripts are not executed when loading from cache'
            outputDoesNotContain fixture.expectedOutputBeforeChange
            configurationCache.assertStateLoaded()
    
            when:
            fixture.applyChange()
            build()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheInitScriptsIntegrationTest.groovy

        def configurationCache = newConfigurationCacheFixture()
    
        @Issue("https://github.com/gradle/gradle/issues/16849")
        def "init script can declare build logic input"() {
            given:
            TestFile buildLogicInput = file('input.txt').tap {
                text = 'foo!'
            }
            TestFile initScript = file('initscript.gradle').tap {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. src/html/template/doc.go

    	err = t.ExecuteTemplate(out, "T", "<script>alert('you have been pwned')</script>")
    
    produces
    
    	Hello, <script>alert('you have been pwned')</script>!
    
    but the contextual autoescaping in html/template
    
    	import "html/template"
    	...
    	t, err := template.New("foo").Parse(`{{define "T"}}Hello, {{.}}!{{end}}`)
    	err = t.ExecuteTemplate(out, "T", "<script>alert('you have been pwned')</script>")
    
    produces safe, escaped HTML output
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:04:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            'deprecation:included-build-script' : 'Included build script has been deprecated.',
            'deprecation:included-build-task' : 'Included build task has been deprecated.',
            'deprecation:init-script' : 'Init script has been deprecated.',
            'deprecation:plugin' : 'Plugin has been deprecated.',
            'deprecation:plugin-script' : 'Plugin script has been deprecated.',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsDynamicGroovyScriptPluginIntegrationTest.groovy

        def script = file("plugin.gradle")
    
        @Override
        String getLocation() {
            return "Script 'plugin.gradle'"
        }
    
        @Override
        void buildLogicApplication(BuildInputRead read) {
            groovyDsl(script, read)
            buildFile << """
                apply from: "plugin.gradle"
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/html/graph.html

      {{template "css" .}}
      {{template "graph_css" .}}
    </head>
    <body>
      {{template "header" .}}
      <div id="graph">
        {{.HTMLBody}}
      </div>
      {{template "script" .}}
      <script>viewer(new URL(window.location.href), {{.Nodes}});</script>
    </body>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 334 bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtDestructuringDeclarationSymbol.kt

        /**
         * A list of [KaVariableSymbol]s which were created from this destructuring declaration.
         *
         * The entries are usually [KaLocalVariableSymbol]s. However, for top-level destructuring declarations in scripts, the entries are
         * [KaPropertySymbol]s instead.
         *
         * E.g., for the following code:
         * ```
         * data class X(val y: Int, val z: String)
         * fun foo() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu May 23 17:29:30 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_settings_files.adoc

    [[sec:settings_script]]
    == Settings Scripts
    
    The settings script is either a `settings.gradle` file in Groovy or a `settings.gradle.kts` file in Kotlin.
    
    Before Gradle assembles the projects for a build, it creates a `Settings` instance and executes the settings file against it.
    
    image::author-gradle-3.png[Settings,500,63,align="left"]
    
    As the settings script executes, it configures this `Settings`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 04:15:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsKotlinScriptPluginIntegrationTest.groovy

        def script = file("plugin.gradle.kts")
    
        @Override
        String getLocation() {
            return "Script 'plugin.gradle.kts'"
        }
    
        @Override
        void buildLogicApplication(BuildInputRead read) {
            kotlinDsl(script, read)
            buildFile << """
                apply from: "plugin.gradle.kts"
            """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/internal/scripts/ScriptFileUtil.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.scripts;
    
    import org.gradle.scripts.ScriptingLanguage;
    
    import java.util.List;
    
    public class ScriptFileUtil {
    
        public static final String SETTINGS_FILE_BASE_NAME = "settings";
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top