Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Nodes (0.77 sec)

  1. pkg/scheduler/schedule_one_test.go

    				}},
    		}
    		scache.AddNode(logger, &node)
    		nodes = append(nodes, &node)
    		objects = append(objects, &node)
    	}
    
    	// Create expected failure reasons for all the nodes. Hopefully they will get rolled up into a non-spammy summary.
    	failedNodeStatues := framework.NodeToStatusMap{}
    	for _, node := range nodes {
    		failedNodeStatues[node.Name] = framework.NewStatus(
    			framework.Unschedulable,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

        write-cluster-name
        create-autoscaler-config
        create-master
        create-nodes-firewall
        create-nodes-template
        if [[ "${KUBE_CREATE_NODES}" == "true" ]]; then
          # Windows nodes take longer to boot and setup so create them first.
          create-windows-nodes
          create-linux-nodes
        fi
        check-cluster
      fi
    }
    
    function check-existing() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_test.go

    }
    
    type testNodeLister struct {
    	nodes []*v1.Node
    }
    
    func (nl testNodeLister) Get(name string) (*v1.Node, error) {
    	for _, node := range nl.nodes {
    		if node.Name == name {
    			return node, nil
    		}
    	}
    	return nil, fmt.Errorf("Node with name: %s does not exist", name)
    }
    
    func (nl testNodeLister) List(_ labels.Selector) (ret []*v1.Node, err error) {
    	return nl.nodes, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

        verbs: ["get"]
        resources:
          - group: "" # core
            resources: ["nodes", "nodes/status"]
      - level: None
        userGroups: ["system:nodes"]
        verbs: ["get"]
        resources:
          - group: "" # core
            resources: ["nodes", "nodes/status"]
      - level: None
        users:
          - system:kube-controller-manager
          - system:cloud-controller-manager
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. cmd/metrics-v2.go

    		Help:      "Total number of bytes sent to the other peer nodes",
    		Type:      counterMetric,
    	}
    }
    
    func getInterNodeReceivedBytesMD() MetricDescription {
    	return MetricDescription{
    		Namespace: interNodeMetricNamespace,
    		Subsystem: trafficSubsystem,
    		Name:      receivedBytes,
    		Help:      "Total number of bytes received from other peer nodes",
    		Type:      counterMetric,
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    			options.FieldSelector = fields.Set{metav1.ObjectNameField: string(nodeName)}.String()
    		}))
    		nodeLister = kubeInformers.Core().V1().Nodes().Lister()
    		nodeHasSynced = func() bool {
    			return kubeInformers.Core().V1().Nodes().Informer().HasSynced()
    		}
    		kubeInformers.Start(wait.NeverStop)
    		klog.InfoS("Attempting to sync node with API server")
    	} else {
    		// we don't have a client to sync!
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods_test.go

    		t.Run(tc.name, func(t *testing.T) {
    			testKubelet := newTestKubelet(t, false /* controllerAttachDetachEnabled */)
    			defer testKubelet.Cleanup()
    			kl := testKubelet.kubelet
    
    			kl.nodeLister = testNodeLister{nodes: []*v1.Node{
    				{
    					ObjectMeta: metav1.ObjectMeta{Name: string(kl.nodeName)},
    					Status: v1.NodeStatus{
    						Addresses: tc.nodeAddresses,
    					},
    				},
    			}}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Lifts tf_executor.island inner ops from a tf_executor.graph";
    
      let description = [{
        This pass converts tf_executor.graphs consisting of only tf_executor.islands and
        a tf_executor.fetch into a sea of nodes consisting of TensorFlow Dialect ops by
        lifting such ops out of a tf_executor.graph's tf_executor.islands. If V1 control
        flow ops are present in a tf_executor.graph, an error will be returned.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    			devices = append(devices, kubecontainer.DeviceInfo{PathOnHost: symlinkPath, PathInContainer: device.DevicePath, Permissions: permission})
    		}
    	}
    
    	return devices, nil
    }
    
    // shouldMountHostsFile checks if the nodes /etc/hosts should be mounted
    // Kubernetes only mounts on /etc/hosts if:
    // - container is not an infrastructure (pause) container
    // - container is not already mounting on /etc/hosts
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        Region* region, int64_t max_iterations) {
      bool changed = true;
    
      // TODO(aminim): we could have a more efficient traversal by guiding the
      // traversal with a worklist and reconsider only the nodes for which an
      // operand type was inferred. This would need to be careful if working on a
      // region that would not be isolated.
      for (int iteration = 0; iteration < max_iterations && changed; ++iteration) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top