Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 533 for Visiting (0.35 sec)

  1. 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)
  2. 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)
  3. pkg/api/v1/persistentvolume/util.go

    	}
    }
    
    // VisitPVSecretNames invokes the visitor function with the name of every secret
    // referenced by the PV spec. If visitor returns false, visiting is short-circuited.
    // Returns true if visiting completed, false if visiting was short-circuited.
    func VisitPVSecretNames(pv *corev1.PersistentVolume, visitor Visitor) bool {
    	visitor = skipEmptyNames(visitor)
    	source := &pv.Spec.PersistentVolumeSource
    	switch {
    	case source.AzureFile != nil:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 05 03:36:23 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  4. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/RelativePathTrackingFileSystemSnapshotHierarchyVisitor.java

        /**
         * Called before visiting the contents of a directory.
         */
        default void enterDirectory(DirectorySnapshot directorySnapshot, RelativePathSupplier relativePath) {}
    
        /**
         * Called for each regular file/directory/missing/unavailable file.
         *
         * @return how to continue visiting the rest of the snapshot hierarchy.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/util/internal/TreeVisitor.java

    public class TreeVisitor<T> {
        /**
         * Visits a node of the tree.
         */
        public void node(T node) {
        }
    
        /**
         * Starts visiting the children of the most recently visited node.
         */
        public void startChildren() {
        }
    
        /**
         * Finishes visiting the children of the most recently started node.
         */
        public void endChildren() {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:11 UTC 2021
    - 1K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/FileSystemSnapshotHierarchyVisitor.java

     */
    public interface FileSystemSnapshotHierarchyVisitor {
    
        /**
         * Called before visiting the contents of a directory.
         */
        default void enterDirectory(DirectorySnapshot directorySnapshot) {}
    
        /**
         * Called for each regular file/directory/missing/unavailable file.
         *
         * @return how to continue visiting the rest of the snapshot hierarchy.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/DependencyArtifactsVisitor.java

    import org.gradle.internal.component.local.model.LocalFileDependencyMetadata;
    
    public interface DependencyArtifactsVisitor {
        /**
         * Visits a node in the graph. All nodes are visited prior to visiting the edges
         */
        default void visitNode(DependencyGraphNode node) {}
    
        /**
         * Visits the artifacts introduced by a particular edge in the graph. Called for every edge in the graph.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 18:04:06 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/AttributeBasedFileVisitDetailsFactory.java

         *
         * @param path Path of the file
         * @param relativePath RelativePath of the file
         * @param attrs attributes of the path, null if not available
         * @param stopFlag transient flag to stop visiting
         * @param fileSystem for Chmod and Stat
         * @return FileVisitDetails
         */
        public static FileVisitDetails getRootFileVisitDetails(
            Path path,
            RelativePath relativePath,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ResolvedFileVisitor.java

         */
        void visitFile(File file);
    
        /**
         * Called when some problem occurs visiting some element of the set. Visiting may continue.
         */
        void visitFailure(Throwable failure);
    
        /**
         * Called after a set of artifacts has been visited.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ArtifactVisitor.java

         *
         * Returns true here allows the collection to preemptively resolve the files in parallel.
         */
        boolean requireArtifactFiles();
    
        /**
         * Called when some problem occurs visiting some element of the set. Visiting may continue.
         */
        void visitFailure(Throwable failure);
    
        /**
         * Called after a set of artifacts has been visited.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top