Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for scriptId (0.25 sec)

  1. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    <4> Does the same as the previous line but allows the property to have a null value
    
    This approach works for all Gradle scripts: project build scripts, script plugins, settings scripts and initialization scripts.
    
    You can also access extra properties on a root project from a subproject using the following syntax:
    
    .my-sub-project/build.gradle.kts
    [source,kotlin]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. pkg/volume/testing/testing.go

    // and arguments were called, set fe.ExectOrder to true.
    func ScriptCommands(fe *testingexec.FakeExec, scripts []CommandScript) {
    	fe.DisableScripts = false
    	for _, script := range scripts {
    		fakeCmd := &testingexec.FakeCmd{}
    		cmdAction := makeFakeCmd(fakeCmd, script.Cmd, script.Args...)
    		outputAction := makeFakeOutput(script.Output, script.ReturnCode)
    		fakeCmd.CombinedOutputScript = append(fakeCmd.CombinedOutputScript, outputAction)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. tensorflow/BUILD

            # "//tools/cpp:asan_build": [
            # "-Wl,--version-script,$(location //tensorflow/c:version_script.lds)",
            # ],
            # "//tools/cpp:hwasan_build": [
            # "-Wl,--version-script,$(location //tensorflow/c:version_script.lds)",
            # ],
            # "//tools/cpp:msan_build": [
            # "-Wl,--version-script,$(location //tensorflow/c:version_script.lds)",
            # ],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    === Potential breaking changes
    
    ==== Kotlin DSL scripts emit compilation warnings
    
    Compilation warnings from Kotlin DSL scripts are printed to the console output.
    For example, the use of deprecated APIs in Kotlin DSL will emit warnings each time the script is compiled.
    
    This is a potentially breaking change if you are consuming the console output of Gradle builds.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. src/net/http/httputil/reverseproxy_test.go

    			case http.StatusEarlyHints:
    				checkLinkHeaders(t, []string{"</style.css>; rel=preload; as=style", "</script.js>; rel=preload; as=script"}, header["Link"])
    			case http.StatusProcessing:
    				checkLinkHeaders(t, []string{"</style.css>; rel=preload; as=style", "</script.js>; rel=preload; as=script", "</foo.js>; rel=preload; as=script"}, header["Link"])
    			default:
    				t.Error("Unexpected 1xx response")
    			}
    
    			respCounter++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         */
        @Incubating
        DependencyFactory getDependencyFactory();
    
        /**
         * Returns the build script handler for this project. You can use this handler to query details about the build
         * script for this project, and manage the classpath used to compile and execute the project's build script.
         *
         * @return the classpath handler. Never returns null.
         */
        ScriptHandler getBuildscript();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            } catch (IllegalArgumentException | JavaHomeException e) {
                return JavaVersion.current();
            }
        }
    
        @Override
        public GradleExecuter usingExecutable(String script) {
            this.executable = script;
            return this;
        }
    
        public String getExecutable() {
            return executable;
        }
    
        @Override
        public GradleExecuter withStdinPipe() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    [[sec:hard_coded_file_paths]]
    == Hardcoded paths and laziness
    
    It is best practice to *avoid* hardcoded paths in build scripts.
    
    In addition to avoiding hardcoded paths, Gradle encourages laziness in its build scripts.
    This means that tasks and operations should be deferred until they are actually needed rather than executed eagerly.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  9. src/text/template/exec_test.go

    	// HTML.
    	{"html", `{{html "<script>alert(\"XSS\");</script>"}}`,
    		"&lt;script&gt;alert(&#34;XSS&#34;);&lt;/script&gt;", nil, true},
    	{"html pipeline", `{{printf "<script>alert(\"XSS\");</script>" | html}}`,
    		"&lt;script&gt;alert(&#34;XSS&#34;);&lt;/script&gt;", nil, true},
    	{"html", `{{html .PS}}`, "a string", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  10. hack/local-up-cluster.sh

    # limitations under the License.
    
    KUBE_VERBOSE=${KUBE_VERBOSE:-1}
    if (( KUBE_VERBOSE > 4 )); then
      set -x
    fi
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    # This script builds and runs a local kubernetes cluster. You may need to run
    # this as root to allow kubelet to open docker's socket, and to write the test
    # CA in /var/run/kubernetes.
    # Usage: `hack/local-up-cluster.sh`.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top