Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for RootPath (0.15 sec)

  1. pilot/pkg/config/monitor/monitor_test.go

    		ConfigFiles: map[string][]byte{"gateway.yml": []byte(statusRegressionYAML)},
    	}
    
    	ts.testSetup(t)
    
    	store := memory.Make(collection.SchemasFor(collections.Gateway))
    	fileWatcher := NewFileSnapshot(ts.rootPath, collection.SchemasFor(), "foo")
    
    	mon := NewMonitor("", store, fileWatcher.ReadConfigFiles, "")
    	stop := make(chan struct{})
    	defer func() { close(stop) }()
    	mon.Start(stop)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotter.java

                AtomicBoolean hasBeenFiltered = new AtomicBoolean();
                Path rootPath = Paths.get(absolutePath);
                PathVisitor visitor = new PathVisitor(predicate, hasBeenFiltered, hasher, stringInterner, defaultExcludes, collector, EMPTY_SYMBOLIC_LINK_MAPPING, previouslyKnownSnapshots, unfilteredSnapshotRecorder);
                Files.walkFileTree(rootPath, DONT_FOLLOW_SYMLINKS, Integer.MAX_VALUE, visitor);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 24.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)
  5. src/internal/trace/traceviewer/static/trace_viewer_full.html

    reportDataFromTree_(root,rootPath){const rootPathString=stringifyPathName_(rootPath);if(this.visitedSet_.has(rootPathString))return;this.visitedSet_.add(rootPathString);this.reportValuesFromNode_(root,rootPath);for(let dimension=0;dimension<root.children.length;dimension++){const children=root.children[dimension];for(const[name,node]of children){const childPath=clonePath_(rootPath);childPath[dimension].push(name);this.reportDataFromTree_(node,childPath);}}}...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top