Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 114 for Builds (0.11 sec)

  1. settings.gradle.kts

        }
    
        // Core Execution Module
        module("core-execution") {
            subproject("build-cache")
            subproject("build-cache-base")
            subproject("build-cache-example-client")
            subproject("build-cache-local")
            subproject("build-cache-http")
            subproject("build-cache-packaging")
            subproject("build-cache-spi")
            subproject("execution-e2e-tests")
            subproject("file-watching")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    		spec, exists := specs[kubeConfigFileName]
    		if !exists {
    			return errors.Errorf("couldn't retrieve KubeConfigSpec for %s", kubeConfigFileName)
    		}
    
    		// builds the KubeConfig object
    		config, err := buildKubeConfigFromSpec(spec, cfg.ClusterName)
    		if err != nil {
    			return err
    		}
    
    		// writes the kubeconfig to disk if it does not exist
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/TaskCacheabilityReasonIntegrationTest.groovy

            then:
            assertCachingDisabledFor BUILD_CACHE_DISABLED, "Build cache is disabled"
    
            when:
            run "notCacheableByDefault"
            then:
            assertCachingDisabledFor BUILD_CACHE_DISABLED, "Build cache is disabled"
    
            when:
            run "unspecified"
            then:
            assertCachingDisabledFor BUILD_CACHE_DISABLED, "Build cache is disabled"
    
            when:
            run "noOutputs"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:59:01 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. src/cmd/cgo/doc.go

    the use of cgo, and to 0 to disable it. The go tool will set the
    build constraint "cgo" if cgo is enabled. The special import "C"
    implies the "cgo" build constraint, as though the file also said
    "//go:build cgo".  Therefore, if cgo is disabled, files that import
    "C" will not be built by the go tool. (For more about build constraints
    see https://golang.org/pkg/go/build/#hdr-Build_Constraints).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

            "consuming descendant" | 'build/dir'    | "dir"      | "build/dir/sub/output.txt" | "build/dir/sub/output.txt"
        }
    
        def "ignores missing dependency if there is an #relation relation in the other direction"() {
            def sourceDir = "src"
            file(sourceDir).createDir()
            def outputDir = "build/output"
    
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/start.go

    	if mode == "off" {
    		// Telemetry is turned off. Crash reporting doesn't work without telemetry
    		// at least set to "local". The upload process runs in both "on" and "local" modes.
    		// In local mode the upload process builds local reports but does not do the upload.
    		return result
    	}
    
    	counter.Open()
    
    	if _, err := os.Stat(telemetry.Default.LocalDir()); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    ====
    include::sample[dir="snippets/plugins/multiproject/kotlin", files="settings.gradle.kts[tags=include-subprojects];build.gradle.kts[tags=plugins-on-subprojects];hello-a/build.gradle.kts[];hello-b/build.gradle.kts[];goodbye-c/build.gradle.kts[]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/invocation/DefaultGradle.java

        }
    
        @Override
        public List<? extends IncludedBuildInternal> includedBuilds() {
            if (includedBuilds == null) {
                throw new IllegalStateException("Included builds are not yet available for this build.");
            }
            return includedBuilds;
        }
    
        @Override
        public IncludedBuild includedBuild(final String name) {
            for (IncludedBuild includedBuild : includedBuilds()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. src/internal/coverage/cfile/emitdata_test.go

    	}
    }
    
    // buildHarness builds the helper program "harness.exe".
    func buildHarness(t *testing.T, dir string, opts []string) string {
    	harnessPath := filepath.Join(dir, "harness.exe")
    	harnessSrc := filepath.Join("testdata", "harness.go")
    	args := []string{"build", "-o", harnessPath}
    	args = append(args, opts...)
    	args = append(args, harnessSrc)
    	//t.Logf("harness build: go %+v\n", args)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modindex/read.go

    var installgorootAll = godebug.New("installgoroot").Value() == "all"
    
    // Import is the equivalent of build.Import given the information in Module.
    func (rp *IndexPackage) Import(bctxt build.Context, mode build.ImportMode) (p *build.Package, err error) {
    	defer unprotect(protect(), &err)
    
    	ctxt := (*Context)(&bctxt)
    
    	p = &build.Package{}
    
    	p.ImportPath = "."
    	p.Dir = filepath.Join(rp.modroot, rp.dir)
    
    	var pkgerr error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top