Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 189 for nodeX (0.04 sec)

  1. cmd/notification.go

    	// can easily eat into the internode bandwidth. This function would be mostly
    	// TX saturating, however there are situations where a RX might also saturate.
    	// To avoid these problems we must split the work at scale. With 1000 node
    	// setup becoming a reality we must try to shard the work properly such as
    	// pick 10 nodes that precisely can send those 100 requests the first node
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1alpha1/generated.proto

      // +optional
      optional .k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // nodeTopology defines which nodes have access to the storage
      // for which capacity was reported. If not set, the storage is
      // not accessible from any node in the cluster. If empty, the
      // storage is accessible from all nodes. This field is
      // immutable.
      //
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/volumebinding/volume_binding.go

    // For PVCs that are bound, then it checks that the corresponding PV's node affinity is
    // satisfied by the given node.
    //
    // For PVCs that are unbound, it tries to find available PVs that can satisfy the PVC requirements
    // and that the PV node affinity is satisfied by the given node.
    //
    // If storage capacity tracking is enabled, then enough space has to be available
    // for the node and volumes that still need to be created.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/resource/v1alpha2/types_swagger_doc_generated.go

    	"":           "ResourceSlice provides information about available resources on individual nodes.",
    	"metadata":   "Standard object metadata",
    	"nodeName":   "NodeName identifies the node which provides the resources if they are local to a node.\n\nA field selector can be used to list only ResourceSlice objects with a certain node name.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependencies/internal/JsonProjectDependencyRenderer.java

    import org.gradle.api.tasks.diagnostics.internal.ProjectDetails.ProjectNameAndPath;
    import org.gradle.api.tasks.diagnostics.internal.graph.nodes.RenderableDependency;
    import org.gradle.api.tasks.diagnostics.internal.graph.nodes.RenderableModuleResult;
    import org.gradle.api.tasks.diagnostics.internal.insight.DependencyInsightReporter;
    import org.gradle.internal.Actions;
    import org.gradle.util.GradleVersion;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  6. pkg/volume/util/util.go

    			if matchExpr.Key == v1.LabelHostname && matchExpr.Operator == v1.NodeSelectorOpIn {
    				if nodes == nil {
    					nodes = sets.New(matchExpr.Values...)
    				} else {
    					nodes = nodes.Intersection(sets.New(matchExpr.Values...))
    				}
    			}
    		}
    		result = result.Union(nodes)
    	}
    
    	return sets.List(result)
    }
    
    // GetPodVolumeNames returns names of volumes that are used in a pod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainer.java

     * <p>This type is intended to contain values that are calculated as nodes in the work graph, but which may also be calculated
     * on demand. An instance of this type can be used as a node in the work graph.
     * </p>
     *
     * <p>Note that when used as a work node, any failure to calculate the value is collected and not rethrown. This means that the node is considered to have succeeded and any dependent
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/build_xla_ops_pass_test.cc

      TF_RETURN_IF_ERROR(s.ToGraph(graph.get()));
      FunctionLibraryDefinition flib_def(graph->op_registry(), fdef_lib);
    
      // Assign all nodes to the CPU device.
      static const char* kCpuDevice = "/job:localhost/replica:0/task:0/cpu:0";
      for (Node* n : graph->nodes()) {
        if (n->requested_device().empty()) {
          n->set_assigned_device_name(kCpuDevice);
        } else {
          n->set_assigned_device_name(n->requested_device());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/network_test.go

    	sc := clienttest.NewWriter[*corev1.Service](t, s.client)
    	pod1 := generatePod("127.0.0.1", "pod1", testNS, "sa1", "node1", map[string]string{"app": "a"}, nil)
    	pc.CreateOrUpdateStatus(pod1)
    	fx.WaitOrFail(t, "xds")
    
    	pod2 := generatePod("127.0.0.2", "pod2", testNS, "sa2", "node1", map[string]string{"app": "a"}, nil)
    	pc.CreateOrUpdateStatus(pod2)
    	fx.WaitOrFail(t, "xds")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. docs/bigdata/README.md

    Kubernetes manages stateless Spark and Hive containers elastically on the compute nodes. Spark has native scheduler integration with Kubernetes. Hive, for legacy reasons, uses YARN scheduler on top of Kubernetes.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
Back to top