Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 112 for baseData (0.22 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultVisualStudioLocator.java

        private VisualCppInstall buildVisualCppInstall(String name, File vsPath, File basePath, VersionNumber version, Compatibility compatibility) {
            switch (compatibility) {
                case LEGACY:
                    return buildLegacyVisualCppInstall(name, vsPath, basePath, version);
                case VS2017_OR_LATER:
                    return buildVisualCppInstall(name, vsPath, basePath, version);
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/operations/trace/BuildOperationTrace.java

            }
    
            this.basePath = getProperty(startParameter, SYSPROP);
    
            if (this.basePath == null || basePath.equals(Boolean.FALSE.toString())) {
                this.logOutputStream = null;
                return;
            }
    
            try {
                File logFile = logFile(basePath);
                GFileUtils.mkdirs(logFile.getParentFile());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GFileUtils.java

            }
            basePath = basePath.subList(prefixLen, basePath.size());
            targetPath = targetPath.subList(prefixLen, targetPath.size());
    
            for (int i = 0; i < basePath.size(); i++) {
                targetPath.add(0, "..");
            }
            if (targetPath.isEmpty()) {
                return ".";
            }
            return CollectionUtils.join(File.separator, targetPath);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/pod_container_manager_linux.go

    	basePath := ""
    	for _, qosContainerName := range qosContainersList {
    		// a pod cgroup is a direct child of a qos node, so check if its a match
    		if len(cgroupName) == len(qosContainerName)+1 {
    			basePath = cgroupName[len(qosContainerName)]
    		}
    	}
    	if basePath == "" {
    		return false, types.UID("")
    	}
    	if !strings.HasPrefix(basePath, podCgroupNamePrefix) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 16:38:36 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. src/path/filepath/path.go

    // joined to basepath with an intervening separator. That is,
    // [Join](basepath, Rel(basepath, targpath)) is equivalent to targpath itself.
    // On success, the returned path will always be relative to basepath,
    // even if basepath and targpath share no elements.
    // An error is returned if targpath can't be made relative to basepath or if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/LegacyWindowsSdkLocator.java

                    try {
                        String basePath = baseKey + REGISTRY_ROOTPATH_SDK + "\\" + subkey;
                        File sdkDir = FileUtils.canonicalize(new File(windowsRegistry.getStringValue(WindowsRegistry.Key.HKEY_LOCAL_MACHINE, basePath, REGISTRY_FOLDER)));
                        String version = formatVersion(windowsRegistry.getStringValue(WindowsRegistry.Key.HKEY_LOCAL_MACHINE, basePath, REGISTRY_VERSION));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyManagementResultsAsInputsIntegrationTest.groovy

        }
    
        private void withOriginalSourceIn(String basePath) {
            sourceFileIn(basePath).tap {
                text = """
                    class Main {}
                """.stripIndent()
                makeOlder()
            }
        }
    
        private void withChangedSourceIn(String basePath) {
            sourceFileIn(basePath).text = """
                class Main {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

            protected final Path basePath;
    
            protected final String imageExtention;
    
            protected final SearchEngineClient searchEngineClient;
    
            protected final FessConfig fessConfig;
    
            FilePurgeVisitor(final Path basePath, final String imageExtention, final long expiry) {
                this.basePath = basePath;
                this.imageExtention = imageExtention;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/util/GFileUtils.java

            }
            basePath = basePath.subList(prefixLen, basePath.size());
            targetPath = targetPath.subList(prefixLen, targetPath.size());
    
            for (int i = 0; i < basePath.size(); i++) {
                targetPath.add(0, "..");
            }
            if (targetPath.isEmpty()) {
                return ".";
            }
            return CollectionUtils.join(File.separator, targetPath);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. pkg/volume/emptydir/empty_dir_test.go

    func doTestPlugin(t *testing.T, config pluginTestConfig) {
    	basePath, err := utiltesting.MkTmpdir("emptydir_volume_test")
    	if err != nil {
    		t.Fatalf("can't make a temp rootdir: %v", err)
    	}
    	defer os.RemoveAll(basePath)
    
    	var (
    		volumePath  = filepath.Join(basePath, "pods/poduid/volumes/kubernetes.io~empty-dir/test-volume")
    		metadataDir = filepath.Join(basePath, "pods/poduid/plugins/kubernetes.io~empty-dir/test-volume")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top