Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 218 for Visiting (0.11 sec)

  1. 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)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultExecutionPlan.java

                        if (!visiting.contains(successor)) {
                            insertPoint.add(successor);
                        }
                    }
                } else {
                    // Have visited this node's dependencies - add it to the graph
                    queue.removeFirst();
                    visiting.remove(node);
                    node.dependenciesProcessed();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/resource_device_inference.cc

        if (failed(res)) return res;
      }
    
      // To support WhileRegion, we need to propagate device attributes from
      // WhileRegion operands to body/cond region arguments *prior* to visiting
      // these regions, so use a pre-order walk.
      WalkResult walk_res = func_op.walk<WalkOrder::PreOrder>([&](Operation* op) {
        if (auto var_handle = dyn_cast<VarHandleOp>(op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/DetermineExecutionPlanAction.java

                return;
            }
    
            // Collect the finalizers and their dependencies so that each node is ordered before all of its dependencies
            LinkedList<Node> nodes = new LinkedList<>();
            Set<Node> visiting = new HashSet<>();
            Set<Node> visited = new HashSet<>();
            Deque<Node> queue = new ArrayDeque<>(finalizers);
            while (!queue.isEmpty()) {
                Node node = queue.peek();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 17.7K bytes
    - Viewed (0)
  7. .teamcity/performance-test-durations.json

      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.corefeature.ArchiveTreePerformanceTest.visiting gzip tar trees",
      "durations" : [ {
        "testProject" : "archivePerformanceProject",
        "linux" : 322
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.corefeature.ArchiveTreePerformanceTest.visiting tar trees",
      "durations" : [ {
        "testProject" : "archivePerformanceProject",
        "linux" : 320
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:30:45 UTC 2024
    - 27.9K bytes
    - Viewed (1)
  8. src/cmd/compile/internal/ssa/sccp.go

    }
    
    type worklist struct {
    	f            *Func               // the target function to be optimized out
    	edges        []Edge              // propagate constant facts through edges
    	uses         []*Value            // re-visiting set
    	visited      map[Edge]bool       // visited edges
    	latticeCells map[*Value]lattice  // constant lattices
    	defUse       map[*Value][]*Value // def-use chains for some values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/properties/annotations/AbstractTypeMetadataWalkerTest.groovy

        }
    
        def "instance walker should allow visiting null nested values"() {
            given:
            def instance = new Object() {
                @TestNested
                NestedType getNested() {
                    return null
                }
                @TestNested
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  10. .teamcity/performance-tests-ci.json

        "testId" : "org.gradle.performance.regression.corefeature.ArchiveTreePerformanceTest.visiting gzip tar trees",
        "groups" : [ {
          "testProject" : "archivePerformanceProject",
          "coverage" : {
            "per_day" : [ "linux" ]
          }
        } ]
      }, {
        "testId" : "org.gradle.performance.regression.corefeature.ArchiveTreePerformanceTest.visiting tar trees",
        "groups" : [ {
          "testProject" : "archivePerformanceProject",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:12 UTC 2024
    - 36.4K bytes
    - Viewed (0)
Back to top