Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 520 for nodeIPs (0.29 sec)

  1. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

          LockGraphNode node = new LockGraphNode(getLockName(key));
          nodes.add(node);
          map.put(key, node);
        }
        // Pre-populate all allowedPriorLocks with nodes of smaller ordinal.
        for (int i = 1; i < numKeys; i++) {
          nodes.get(i).checkAcquiredLocks(Policies.THROW, nodes.subList(0, i));
        }
        // Pre-populate all disallowedPriorLocks with nodes of larger ordinal.
        for (int i = 0; i < numKeys - 1; i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

          LockGraphNode node = new LockGraphNode(getLockName(key));
          nodes.add(node);
          map.put(key, node);
        }
        // Pre-populate all allowedPriorLocks with nodes of smaller ordinal.
        for (int i = 1; i < numKeys; i++) {
          nodes.get(i).checkAcquiredLocks(Policies.THROW, nodes.subList(0, i));
        }
        // Pre-populate all disallowedPriorLocks with nodes of larger ordinal.
        for (int i = 0; i < numKeys - 1; i++) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_cluster_util.cc

      VLOG(1) << "GetNodesRelatedToRefVariables() found " << result.size()
              << " nodes";
      return result;
    }
    
    absl::StatusOr<std::string> SerializeGraphDeterministic(const Graph& graph) {
      GraphDef def;
      graph.ToGraphDef(&def);
    
      // Before serialization, sort each node's control inputs to achieve
      // determinism. Sorting control inputs could help (but not necessarily) create
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/interface.go

    	// return a PreFilterResult to influence which nodes to evaluate downstream. This is useful
    	// for cases where it is possible to determine the subset of nodes to process in O(1) time.
    	// When PreFilterResult filters out some Nodes, the framework considers Nodes that are filtered out as getting "UnschedulableAndUnresolvable".
    	// i.e., those Nodes will be out of the candidates of the preemption.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/graph/Graphs.java

      /**
       * Returns the subgraph of {@code graph} induced by {@code nodes}. This subgraph is a new graph
       * that contains all of the nodes in {@code nodes}, and all of the {@link Graph#edges() edges}
       * from {@code graph} for which both nodes are contained by {@code nodes}.
       *
       * @throws IllegalArgumentException if any element in {@code nodes} is not a node in the graph
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/graph/Graphs.java

      /**
       * Returns the subgraph of {@code graph} induced by {@code nodes}. This subgraph is a new graph
       * that contains all of the nodes in {@code nodes}, and all of the {@link Graph#edges() edges}
       * from {@code graph} for which both nodes are contained by {@code nodes}.
       *
       * @throws IllegalArgumentException if any element in {@code nodes} is not a node in the graph
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    // sockets contain a bigger number of CPUs (free and busy) than NUMA nodes, or equivalently that each
    // socket contains more than one NUMA node.
    //
    // If instead sockets are lower in the memory hierarchy than NUMA nodes, they are sorted as follows.
    // First, they are sorted by number of free CPUs in the NUMA nodes that contain them. Then, for each
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/interpodaffinity/scoring_test.go

    		// But there are more nodes(actually more existing pods) in regionChina that match the preference than regionIndia.
    		// Then, nodes in regionChina get higher score than nodes in regionIndia, and all the nodes in regionChina should get a same score(high score),
    		// while all the nodes in regionIndia should get another same score(low score).
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 44.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeStateTest.groovy

            def modules1 = endorseFrom1.targetComponent.nodes[0].ownStrictVersionConstraints.getModules()
            def modules2 = endorseFrom2.targetComponent.nodes[0].ownStrictVersionConstraints.getModules()
    
            modulesAll.size() == 5
            modules1.size() == 1
            modules2.size() == 4
    
            modulesAll == modules1 + modules2
    
            endorseFrom1.targetComponent.nodes[0].ownStrictVersionConstraints != endorsedStrictVersions
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/cache/cache.go

    	for k, v := range cache.nodes {
    		nodes[k] = v.info.Snapshot()
    	}
    
    	return &Dump{
    		Nodes:       nodes,
    		AssumedPods: cache.assumedPods.Union(nil),
    	}
    }
    
    // UpdateSnapshot takes a snapshot of cached NodeInfo map. This is called at
    // beginning of every scheduling cycle.
    // The snapshot only includes Nodes that are not deleted at the time this function is called.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 09:56:48 UTC 2023
    - 24.9K bytes
    - Viewed (0)
Back to top