Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 464 for Visiting (0.12 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SnapshotVisitResult.java

    /**
     * Ways to continue visiting a snapshot hierarchy after an entry has been visited.
     *
     * @see java.nio.file.FileVisitResult
     */
    public enum SnapshotVisitResult {
    
        /**
         * Continue visiting. When returned after visiting a directory,
         * the entries in the directory will be visited next.
         */
        CONTINUE,
    
        /**
         * Terminate visiting immediately.
         */
        TERMINATE,
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultBuildController.java

            }
        }
    
        private static void checkForCyclesFor(TaskInternal task, Set<TaskInternal> visited, Set<TaskInternal> visiting) {
            if (visited.contains(task)) {
                // Already checked
                return;
            }
            if (!visiting.add(task)) {
                // Visiting dependencies -> have found a cycle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 20:29:05 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  3. pkg/api/v1/pod/util.go

    		if len(name) == 0 {
    			// continue visiting
    			return true
    		}
    		// delegate to visitor
    		return visitor(name)
    	}
    }
    
    // VisitContainers invokes the visitor function with a pointer to every container
    // spec in the given pod spec with type set in mask. If visitor returns false,
    // visiting is short-circuited. VisitContainers returns true if visiting completes,
    // false if visiting was short-circuited.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 17:18:04 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/project/Graph.java

                    cycle.removeLast();
                    stateMap.put(v, DfsState.VISITED);
                } else if (state == DfsState.VISITING) {
                    // we are already visiting this vertex, this mean we have a cycle
                    int pos = cycle.lastIndexOf(v.label);
                    List<String> ret = cycle.subList(pos, cycle.size());
                    ret.add(v.label);
                    return ret;
                }
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:02:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionStructureVisitor.java

        /**
         * Called when starting to visit a file collection. Can return true to continue with visiting or false to skip this collection and its contents.
         *
         * <p>When a file collection represents a container of file collections, the children of the file collection are visited in order. Visiting a child works in the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/building/Graph.java

                        stateMap.put(v, DfsState.VISITED);
                    } else if (state == DfsState.VISITING) {
                        // we are already visiting this vertex, this mean we have a cycle
                        int pos = cycle.lastIndexOf(v);
                        List<String> ret = cycle.subList(pos, cycle.size());
                        ret.add(v);
                        return ret;
                    }
                }
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 22 17:27:48 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/impl/Graph.java

                    cycle.removeLast();
                    stateMap.put(v, DfsState.VISITED);
                } else if (state == DfsState.VISITING) {
                    // we are already visiting this vertex, this mean we have a cycle
                    int pos = cycle.lastIndexOf(v.label);
                    List<String> ret = cycle.subList(pos, cycle.size());
                    ret.add(v.label);
                    return ret;
                }
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/Graph.java

                        stateMap.put(v, DfsState.VISITED);
                    } else if (state == DfsState.VISITING) {
                        // we are already visiting this vertex, this mean we have a cycle
                        int pos = cycle.lastIndexOf(v);
                        List<String> ret = cycle.subList(pos, cycle.size());
                        ret.add(v);
                        return ret;
                    }
                }
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ir/visit.go

    //
    //	var do func(ir.Node) bool
    //	do = func(x ir.Node) bool {
    //		... processing BEFORE visiting children ...
    //		if ... should visit children ... {
    //			ir.DoChildren(x, do)
    //			... processing AFTER visiting children ...
    //		}
    //		if ... should stop parent DoChildren call from visiting siblings ... {
    //			return true
    //		}
    //		return false
    //	}
    //	do(root)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 23 14:29:16 UTC 2023
    - 6K bytes
    - Viewed (0)
  10. pkg/apis/core/pods/helpers.go

    // and returns true if visiting should continue.
    type ContainerVisitorWithPath func(container *api.Container, path *field.Path) bool
    
    // VisitContainersWithPath invokes the visitor function with a pointer to the spec
    // of every container in the given pod spec and the field.Path to that container.
    // If visitor returns false, visiting is short-circuited. VisitContainersWithPath returns true if visiting completes,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:35:30 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top