Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for outdirs (0.22 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheIO.kt

        }
    
        private
        fun collectRootDirs(buildStateRegistry: BuildStateRegistry): MutableSet<File> {
            val rootDirs = mutableSetOf<File>()
            buildStateRegistry.visitBuilds { build ->
                rootDirs.add(build.buildRootDir)
            }
            return rootDirs
        }
    
        /**
         * See [ConfigurationCacheState.writeRootBuildState].
         */
        internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/cacheentry/EntryDetails.kt

    import org.gradle.util.Path
    import java.io.File
    
    
    /**
     * Data stored in the "entry details" file. Provides some metadata about the cache entry.
     */
    internal
    class EntryDetails(
        val rootDirs: List<File>,
        val intermediateModels: Map<ModelKey, BlockAddress>,
        val projectMetadata: Map<Path, BlockAddress>,
        val sideEffects: List<BlockAddress>,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    		}
    		return 0, 0, err
    	}
    	outUids, err := exec.Command(cmd, kubeletUser).Output()
    	if err != nil {
    		return 0, 0, fmt.Errorf("error retrieving additional ids for user %q", kubeletUser)
    	}
    	outGids, err := exec.Command(cmd, "-g", kubeletUser).Output()
    	if err != nil {
    		return 0, 0, fmt.Errorf("error retrieving additional gids for user %q", kubeletUser)
    	}
    	if string(outUids) != string(outGids) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

            // so we can load the fingerprint for build scripts and other files from included builds
            // without violating file system invariants.
            registerWatchableBuildDirectories(entryDetails.rootDirs)
    
            loadGradleProperties()
    
            return checkFingerprintAgainstLoadedProperties(entryDetails, layout).also { result ->
                if (result !== CheckedFingerprint.Valid) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_test.go

    }
    
    func TestDisablePanicThresholdAsDefault(t *testing.T) {
    	g := NewWithT(t)
    
    	outliers := []*networking.OutlierDetection{
    		// Unset MinHealthPercent
    		{},
    		// Explicitly set MinHealthPercent to 0
    		{
    			MinHealthPercent: 0,
    		},
    	}
    
    	for _, outlier := range outliers {
    		c := xdstest.ExtractCluster("outbound|8080||*.example.org",
    			buildTestClusters(clusterTest{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  6. cluster/gce/gci/configure-helper.sh

    function download-extra-addons {
      local -r out_dir="${KUBE_HOME}/kube-manifests/kubernetes/gci-trusty/gce-extras"
    
      mkdir -p "${out_dir}"
    
      # shellcheck disable=SC2206
      local curl_cmd=(
        "curl"
        ${CURL_FLAGS}
      )
      if [[ -n "${EXTRA_ADDONS_HEADER:-}" ]]; then
        curl_cmd+=("-H" "${EXTRA_ADDONS_HEADER}")
      fi
      curl_cmd+=("-o" "${out_dir}/extras.json")
      curl_cmd+=("${EXTRA_ADDONS_URL}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    //
    // See https://golang.org/ref/mod#go-mod-tidy for more about 'go mod tidy'.
    //
    // # Make vendored copy of dependencies
    //
    // Usage:
    //
    //	go mod vendor [-e] [-v] [-o outdir]
    //
    // Vendor resets the main module's vendor directory to include all packages
    // needed to build and test all the main module's packages.
    // It does not include test code for vendored packages.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        if (num_dims < 2 || num_dims % 2 != 0) return failure();
        const int64_t out_dims = num_dims / 2;
    
        int64_t new_size = 1;
        llvm::SmallVector<int64_t, 4> new_dims;
        for (int i = 0; i < out_dims; i++) {
          if (input_type.getDimSize(i) != input_type.getDimSize(i + out_dims))
            return op.emitOpError("invalid dimensions size");
          new_size *= input_type.getDimSize(i);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/exec.go

    	}
    
    	gccgo := cfg.BuildToolchainName == "gccgo"
    
    	// swig
    	args := []string{
    		"-go",
    		"-cgo",
    		"-intgosize", intgosize,
    		"-module", base,
    		"-o", objdir + gccBase + gccExt,
    		"-outdir", objdir,
    	}
    
    	for _, f := range cflags {
    		if len(f) > 3 && f[:2] == "-I" {
    			args = append(args, f)
    		}
    	}
    
    	if gccgo {
    		args = append(args, "-gccgo")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  10. RELEASE.md

        *   Removed data download links from TensorBoard.
        *   TensorBoard uses a relative data directory, for easier embedding.
        *   TensorBoard automatically ignores outliers for domain calculation, and
            formats proportional values consistently.
    *   Multiple tfdbg bug fixes:
        *   Fixed Windows compatibility issues.
        *   Command history now persists across runs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top