Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 533 for Visiting (0.27 sec)

  1. pkg/api/pod/util.go

    // if visiting should continue.
    type ContainerVisitor func(container *api.Container, containerType ContainerType) (shouldContinue bool)
    
    // 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: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/FileVisitDetails.java

     *
     * @see FileTree#visit(groovy.lang.Closure)
     */
    public interface FileVisitDetails extends FileTreeElement {
    
        /**
         * Requests that file visiting terminate after the current file.
         */
        void stopVisiting();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 15 16:06:48 UTC 2017
    - 970 bytes
    - Viewed (0)
  3. ci/official/pycpp.sh

    else
       tfrun bazel test $TFCI_BAZEL_COMMON_ARGS --profile "$TFCI_OUTPUT_DIR/profile.json.gz" --config="${TFCI_BAZEL_TARGET_SELECTING_CONFIG_PREFIX}_pycpp_test"
    fi
    
    # Note: the profile can be viewed by visiting chrome://tracing in a Chrome browser.
    # See https://docs.bazel.build/versions/main/skylark/performance.html#performance-profiling
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 06 17:29:44 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/resource/result.go

    	return r.targetsSingleItems
    }
    
    // IgnoreErrors will filter errors that occur when by visiting the result
    // (but not errors that occur by creating the result in the first place),
    // eliminating any that match fns. This is best used in combination with
    // Builder.ContinueOnError(), where the visitors accumulate errors and return
    // them after visiting as a slice of errors. If no errors remain after
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 23:00:24 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  5. tests/integration/GKE.md

    You must grant your default compute service account the correct permissions before creating the deployment.
    Otherwise, the installation will fail.
    
    > Note the **Project Number** for your project by visiting the [Dashboard Page](https://console.cloud.google.com/homehttps://console.cloud.google.com/home) of Google Cloud Console.
    
    Navigate to the [IAM section](https://console.cloud.google.com/permissions/projectpermissions)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 20 23:19:43 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/exceptions/ExceptionContextVisitor.java

        protected abstract void visitCause(Throwable cause);
    
        protected abstract void visitLocation(String location);
    
        /**
         * Should be called after each time this visitor has finished visiting.
         *
         * This method can be used to perform any cleanup or final processing related
         * to the visitor's purpose.
         */
        protected void endVisiting() {
            // default is no-op
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 13:32:53 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/RelativePathTracker.java

    import org.gradle.internal.RelativePathSupplier;
    
    import java.util.ArrayDeque;
    import java.util.Collection;
    import java.util.Deque;
    import java.util.Iterator;
    
    /**
     * Tracks the relative path. Useful when visiting {@link FileSystemLocationSnapshot}s.
     */
    public class RelativePathTracker implements RelativePathSupplier {
        private final Deque<String> segments = new ArrayDeque<>();
        private String rootName;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/CachingChangeContainer.java

     */
    
    package org.gradle.internal.execution.history.changes;
    
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * An implementation that will cache a number of results of visiting, and make them available for subsequent visits.
     * When the cache is overrun, then the delegate will be visited directly in further requests.
     * If a visitor does not consume all the changes, then nothing is cached.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/graph/CachingDirectedGraphWalker.java

                        if (connectedNodeDetails == null) {
                            // Have not visited the successor node, so add to the queue for visiting
                            queue.addFirst(connectedNode);
                        } else if (!connectedNodeDetails.finished) {
                            // Currently visiting the successor node - we're in a cycle
                            details.stronglyConnected = true;
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

                if (resolveState.peek() != null) {
                    final NodeState node = resolveState.pop();
                    LOGGER.debug("Visiting configuration {}.", node);
    
                    // Register capabilities for this node
                    registerCapabilities(resolveState, node);
    
                    // Initialize and collect any new outgoing edges of this node
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top