Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 138 for baseData (0.2 sec)

  1. 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)
  2. pkg/kubelet/runonce_test.go

    	podStartupLatencyTracker := kubeletutil.NewPodStartupLatencyTracker()
    	basePath, err := utiltesting.MkTmpdir("kubelet")
    	if err != nil {
    		t.Fatalf("can't make a temp rootdir %v", err)
    	}
    	defer os.RemoveAll(basePath)
    	kb := &Kubelet{
    		rootDirectory:    filepath.Clean(basePath),
    		podLogsDirectory: filepath.Join(basePath, "pod-logs"),
    		recorder:         &record.FakeRecorder{},
    		cadvisor:         cadvisor,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 06:59:54 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. samples/static-server/src/main/java/okhttp3/sample/SampleServer.java

        }
      }
    
      private MockResponse directoryToResponse(String basePath, File directory) {
        if (!basePath.endsWith("/")) basePath += "/";
    
        StringBuilder response = new StringBuilder();
        response.append(String.format("<html><head><title>%s</title></head><body>", basePath));
        response.append(String.format("<h1>%s</h1>", basePath));
        for (String file : directory.list()) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Jan 02 02:50:44 UTC 2019
    - 4.7K 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. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/SourceFile.java

        public void writeToFile(TestFile file) {
            if (file.exists()) {
                file.write("");
            }
            file.write(content);
        }
    
        public String withPath(String basePath) {
            return Joiner.on('/').join(basePath, path, name);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. 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)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractJavaGroovyIncrementalCompilationSupport.groovy

                assert className: "unable to find class name"
                def f
                if (packageFolder.isEmpty()) {
                    f = file("$basePath/${className}.$suffix")
                } else {
                    f = file("$basePath/${packageFolder}/${className}.$suffix")
                }
                f.createFile()
                f.text = body
                out = f
            }
            out
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top