Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for RootPath (0.36 sec)

  1. cmd/format-erasure_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if err = os.MkdirAll(pathJoin(rootPath, minioMetaBucket), os.FileMode(0o755)); err != nil {
    		t.Fatal(err)
    	}
    
    	if err = os.WriteFile(pathJoin(rootPath, minioMetaBucket, formatConfigFile), b, os.FileMode(0o644)); err != nil {
    		t.Fatal(err)
    	}
    
    	formatData, _, err := formatErasureMigrate(rootPath)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 08:25:46 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/JavaCompileDaemonCancellationIntegrationTest.groovy

            assert client.gradleHandle.standardOutput.contains("BUILD SUCCESS")
            daemons.daemon.becomesIdle()
        }
    
        TestFile pidFile(String rootPath = null) {
            def root = rootPath ? file(rootPath) : testDirectory
            return root.file('build/generated/sources/annotationProcessor/java/main/resources/pid.txt')
        }
    
        static String getBlockingFooClass() {
            return """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:57:50 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FileHierarchySet.java

            private final Node rootNode;
    
            PrefixFileSet(File rootDir) {
                this(toAbsolutePath(rootDir));
            }
    
            PrefixFileSet(String rootPath) {
                String path = removeTrailingSeparator(rootPath);
                this.rootNode = new Node(path);
            }
    
            PrefixFileSet(Node rootNode) {
                this.rootNode = rootNode;
            }
    
            @VisibleForTesting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    	}
    
    	// Look for vendor.json declaring import path.
    	data, _ = os.ReadFile(filepath.Join(dir, "vendor/vendor.json"))
    	var cfg2 struct{ RootPath string }
    	json.Unmarshal(data, &cfg2)
    	if cfg2.RootPath != "" {
    		return cfg2.RootPath, nil
    	}
    
    	// Look for path in GOPATH.
    	var badPathErr error
    	for _, gpdir := range filepath.SplitList(cfg.BuildContext.GOPATH) {
    		if gpdir == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
Back to top