Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 59 for Nodes (0.05 sec)

  1. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    		},
    		ObjectMeta: metav1.ObjectMeta{
    			Name:   name,
    			Labels: labels,
    		},
    	}
    }
    
    func addNodes(t *testing.T, controller *FakeController, nodes ...*corev1.Node) {
    	for _, node := range nodes {
    		clienttest.Wrap(t, controller.nodes).CreateOrUpdate(node)
    		waitForNode(t, controller, node.Name)
    	}
    }
    
    func TestEndpointUpdate(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    		// We can run in parallel because logging is per-test.
    		tc := tc
    		t.Run(name, func(t *testing.T) {
    			t.Parallel()
    			nodes := tc.nodes
    			if nodes == nil {
    				nodes = []*v1.Node{workerNode}
    			}
    			testCtx := setup(t, nodes, tc.claims, tc.classes, tc.schedulings, tc.objs)
    			testCtx.p.enabled = !tc.disable
    			initialObjects := testCtx.listAll(t)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // in the provided namespace.
      string trustedZtunnelNamespace = 59;
    }
    
    message PilotTaintControllerConfig {
      // Enable the untaint controller for new nodes. This aims to solve a race for CNI installation on 
      // new nodes. For this to work, the newly added nodes need to have the istio CNI taint as they are
      // added to the cluster. This is usually done by configuring the cluster infra provider.
      bool enabled = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  4. cluster/gce/windows/k8s-node-setup.psm1

      Log-Output ("kubelet kubeconfig from metadata (non-bootstrap):`n" +
                  "$(Get-Content -Raw ${env:KUBECONFIG})")
    }
    
    # Creates the kubelet kubeconfig at $env:KUBECONFIG for nodes that use an
    # authentication plugin, or at $env:BOOTSTRAP_KUBECONFIG for nodes that do not.
    #
    # Create-NodePki() must be called first.
    #
    # Required ${kube_env} keys:
    #   KUBERNETES_MASTER_NAME: the apiserver IP address.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            this.dependenciesMayChange = component.getModule().isVirtualPlatform();
        }
    
        // the enqueue and dequeue methods are used for performance reasons
        // in order to avoid tracking the set of enqueued nodes
        boolean enqueue() {
            if (queued) {
                return false;
            }
            queued = true;
            return true;
        }
    
        NodeState dequeue() {
            queued = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/MapMakerInternalMap.java

         * be read without locking. Next fields of nodes are immutable (final). All list additions are
         * performed at the front of each bin. This makes it easy to check changes, and also fast to
         * traverse. When nodes would otherwise be changed, new nodes are created to replace them. This
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/manager_test.go

    		"res1": map[string]pluginapi.Device{
    			"dev1": {
    				ID: "dev1",
    				Topology: &pluginapi.TopologyInfo{
    					Nodes: []*pluginapi.NUMANode{
    						{
    							ID: 1,
    						},
    					},
    				},
    			},
    			"dev2": {
    				ID: "dev2",
    				Topology: &pluginapi.TopologyInfo{
    					Nodes: []*pluginapi.NUMANode{
    						{
    							ID: 1,
    						},
    						{
    							ID: 2,
    						},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         * be read without locking. Next fields of nodes are immutable (final). All list additions are
         * performed at the front of each bin. This makes it easy to check changes, and also fast to
         * traverse. When nodes would otherwise be changed, new nodes are created to replace them. This
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

    // The cluster will be wrapped in a `tf_device.cluster` first and then by a
    // replicate.
    // TPUPartitionedInputV2 nodes would be inside the replicate but outside the
    // cluster.
    // TPUReplicatedInput and TPUReplicatedOutput nodes will be replaced by the
    // replicate operands and results.
    // CHECK-LABEL: func @replication_with_model_parallelism
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. tensorflow/c/c_api_test.cc

      TF_DeleteBuffer(graph_def);
    
      // Can add nodes to the imported graph without trouble.
      Add(feed, scalar, graph, s);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    
      TF_DeleteGraph(graph);
      TF_DeleteStatus(s);
    }
    
    TEST(CAPI, ImportGraphDef_WithReturnOutputs) {
      TF_Status* s = TF_NewStatus();
      TF_Graph* graph = TF_NewGraph();
    
      // Create a graph with two nodes: x and 3
      Placeholder(graph, s);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
Back to top