Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 775 for Nodes (0.05 sec)

  1. pkg/scheduler/framework/plugins/podtopologyspread/filtering.go

    // preemption algorithm, in particular the following 2 facts:
    // Fact 1: we only preempt pods on the same node, instead of pods on multiple nodes.
    // Fact 2: each node is evaluated on a separate copy of the preFilterState during its preemption cycle.
    // If we plan to turn to a more complex algorithm like "arbitrary pods on multiple nodes", this
    // structure needs to be revisited.
    // Fields are exported for comparison during testing.
    type criticalPaths [2]struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 12.4K bytes
    - Viewed (1)
  2. cluster/gce/upgrade.sh

      echo ""
      echo "${0} [-M | -N | -P] [-o] (-l | <version number or publication>)"
      echo "  Upgrades master and nodes by default"
      echo "  -M:  Upgrade master only"
      echo "  -N:  Upgrade nodes only"
      echo "  -P:  Node upgrade prerequisites only (create a new instance template)"
      echo "  -c:  Upgrade NODE_UPGRADE_PARALLELISM nodes in parallel (default=1) within a single instance group. The MIGs themselves are dealt serially."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  3. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    			continue
    		}
    
    		if !util.IsMultiAttachAllowed(volumeToAttach.VolumeSpec) {
    			nodes := rc.actualStateOfWorld.GetNodesForAttachedVolume(volumeToAttach.VolumeName)
    			if len(nodes) > 0 {
    				if !volumeToAttach.MultiAttachErrorReported {
    					rc.reportMultiAttachError(logger, volumeToAttach, nodes)
    					rc.desiredStateOfWorld.SetMultiAttachError(volumeToAttach.VolumeName, volumeToAttach.NodeName)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    		"below it will be dropped from each sample."),
    	"hide": helpText(
    		"Skips nodes matching regexp",
    		"Discard nodes that match this location.",
    		"Other nodes from samples that include this location will be shown.",
    		"Matching includes the function name, filename or object name."),
    	"show": helpText(
    		"Only show nodes matching regexp",
    		"If set, only show nodes that match this location.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/mlir_bridge_pass_util_test.cc

              .Finalize(root.graph(), &call));
      call->AddAttr(std::string(kMustCompileAttr), true);
    
      TF_ASSERT_OK(root.ToGraph(&graph));
    
      // Required for passing the PS server parameter check.
      for (Node* node : graph.nodes()) {
        node->set_assigned_device_name("/job:ps/replica:0/task:0/device:GPU:0");
      }
    
      EXPECT_TRUE(
          IsSupportedByNonReplicatedBridge(graph, /*function_library=*/nullptr));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 19:51:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. api/discovery/api__v1.json

          ]
        },
        {
          "kind": "NodeProxyOptions",
          "name": "nodes/proxy",
          "namespaced": false,
          "singularName": "",
          "verbs": [
            "create",
            "delete",
            "get",
            "patch",
            "update"
          ]
        },
        {
          "kind": "Node",
          "name": "nodes/status",
          "namespaced": false,
          "singularName": "",
          "verbs": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

            writeElastisearchJsonApi(zos, id, "nodes", "stats");
            writeElastisearchJsonApi(zos, id, "nodes", "_all");
            writeElastisearchJsonApi(zos, id, "nodes", "usage");
            writeElastisearchJsonApi(zos, id, "remote", "info");
            writeElastisearchJsonApi(zos, id, "tasks", "");
            writeElastisearchJsonApi(zos, id, "nodes", "hot_threads");
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. tensorflow/c/c_api_function.cc

            // artificial restriction and require that when num_opers=-1, such
            // nodes must have a single output.
            if (node->num_outputs() != 1) {
              return InvalidArgument(
                  "When `num_opers` is set to -1, nodes referenced in `inputs` "
                  "must have a single output. Node ",
                  node->name(), " has ", node->num_outputs(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/RuleBindings.java

            }
        }
    
        private class ScopeIndex {
            final Map<ModelType<?>, PredicateMatches> types = new LinkedHashMap<>();
            final List<ModelNodeInternal> nodes = new ArrayList<>();
    
            public void addNode(ModelNodeInternal node) {
                nodes.add(node);
                for (Map.Entry<ModelType<?>, PredicateMatches> entry : types.entrySet()) {
                    if (node.canBeViewedAs(entry.getKey())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/partially_decluster_pass.cc

    Status FindNodesToDecluster(const Graph& graph,
                                absl::flat_hash_set<Node*>* result,
                                absl::Span<Node* const> post_order) {
      // Find nodes that have at least one user outside their cluster that expects
      // hostmem output.  These nodes should be cloned to outside the cluster to
      // avoid the device-host copy we'd otherwise need.
    
      MemoryTypeVector input_mtypes, output_mtypes;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 09 11:36:41 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top