Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for VisitFrom (0.08 sec)

  1. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DirectoryFileTree.java

            visitor.visitFileTree(dir, patternSet, owner);
        }
    
        @Override
        public void visit(FileVisitor visitor) {
            visitFrom(visitor, dir, RelativePath.EMPTY_ROOT, new AtomicBoolean());
        }
    
        /**
         * Process the specified file or directory.  If it is a directory, then its contents
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 21:33:45 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/SingleIncludePatternFileTree.java

                patternSet.include(includePattern);
                patternSet.exclude(excludeSpec);
                DirectoryFileTree fileTree = new DirectoryFileTree(baseDir, patternSet, fileSystem);
                fileTree.visitFrom(visitor, file, new RelativePath(file.isFile(), pathSegments.toArray(new String[0])), stopFlag);
            } else if (segment.contains("*") || segment.contains("?")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. plugin/pkg/auth/authorizer/node/graph.go

    	if !exists {
    		return
    	}
    
    	// find existing neighbors with a single edge (meaning we are their only neighbor)
    	neighborsToRemove := []graph.Node{}
    	edgesToRemoveFromIndexes := []graph.Edge{}
    	g.graph.VisitFrom(vertex, func(neighbor graph.Node) bool {
    		// this downstream neighbor has only one edge (which must be from us), so remove them as well
    		if g.graph.Degree(neighbor) == 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top