Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for nodev1 (0.12 sec)

  1. pkg/printers/internalversion/printers_test.go

    					Labels: map[string]string{"node-role.kubernetes.io/master": "", "node-role.kubernetes.io/control-plane": "", "node-role.kubernetes.io/proxy": "", "kubernetes.io/role": "node"},
    				},
    			},
    			// Columns: Name, Status, Roles, Age, KubeletVersion
    			expected: []metav1.TableRow{{Cells: []interface{}{"foo10", "Unknown", "control-plane,master,node,proxy", "<unknown>", ""}}},
    		},
    		{
    			node: api.Node{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

        // SendFromHost and all its predecessors from `host_graph`.
        std::vector<Node*> nodes;
        nodes.reserve(g->num_op_nodes());
        for (Node* n : g->op_nodes()) {
          nodes.push_back(n);
        }
        for (Node* n : nodes) {
          g->RemoveNode(n);
        }
        Node* start_node = pivot_node ? pivot_node : host_graph->source_node();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_node_status_test.go

    func (l delegatingNodeLister) Get(name string) (*v1.Node, error) {
    	return l.client.CoreV1().Nodes().Get(context.Background(), name, metav1.GetOptions{})
    }
    
    func (l delegatingNodeLister) List(selector labels.Selector) (ret []*v1.Node, err error) {
    	opts := metav1.ListOptions{}
    	if selector != nil {
    		opts.LabelSelector = selector.String()
    	}
    	nodeList, err := l.client.CoreV1().Nodes().List(context.Background(), opts)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller_test.go

    			orphanPod, err := clientset.CoreV1().Pods("default").Create(context.Background(), orphanPod, metav1.CreateOptions{})
    			if err != nil {
    				t.Fatalf("Creating orphan pod: %v", err)
    			}
    
    			if err := wait.PollUntilContextTimeout(ctx, 100*time.Millisecond, wait.ForeverTestTimeout, false, func(ctx context.Context) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods.go

    				if utilnet.IPFamilyOfString(s.HostIP) != utilnet.IPFamilyOf(hostIPs[0]) {
    					kl.recorder.Eventf(pod, v1.EventTypeWarning, "HostIPsIPFamilyMismatch",
    						"Kubelet detected an IPv%s node IP (%s), but the cloud provider selected an IPv%s node IP (%s); pass an explicit `--node-ip` to kubelet to fix this.",
    						utilnet.IPFamilyOfString(s.HostIP), s.HostIP, utilnet.IPFamilyOf(hostIPs[0]), hostIPs[0].String())
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "description": "Node affinity is a group of node affinity scheduling rules.",
          "properties": {
            "preferredDuringSchedulingIgnoredDuringExecution": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	EINVAL      = syscall.Errno(0x16)
    	EIO         = syscall.Errno(0x5)
    	EISDIR      = syscall.Errno(0x15)
    	EMFILE      = syscall.Errno(0x18)
    	EMLINK      = syscall.Errno(0x1f)
    	ENFILE      = syscall.Errno(0x17)
    	ENODEV      = syscall.Errno(0x13)
    	ENOENT      = syscall.Errno(0x2)
    	ENOEXEC     = syscall.Errno(0x8)
    	ENOMEM      = syscall.Errno(0xc)
    	ENOSPC      = syscall.Errno(0x1c)
    	ENOTBLK     = syscall.Errno(0xf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal_test.go

    	defaultDownscalestabilizationWindow := 5 * time.Minute
    
    	tCtx := ktesting.Init(t)
    	hpaController := NewHorizontalController(
    		tCtx,
    		eventClient.CoreV1(),
    		testScaleClient,
    		testClient.AutoscalingV2(),
    		testrestmapper.TestOnlyStaticRESTMapper(legacyscheme.Scheme),
    		metricsClient,
    		informerFactory.Autoscaling().V2().HorizontalPodAutoscalers(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	precRel
    	precEqual
    	precAnd
    	precXor
    	precOr
    	precLogicalAnd
    	precLogicalOr
    	precCond
    	precAssign
    	precComma
    	precDefault
    )
    
    // hasPrec matches the AST nodes that have a prec method that returns
    // the node's precedence.
    type hasPrec interface {
    	prec() precedence
    }
    
    // Name is an unqualified name.
    type Name struct {
    	Name string
    }
    
    func (n *Name) print(ps *printState) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  10. src/net/http/server.go

    			return nil, nil, &url.URL{Path: cleanPath(u.Path) + "/", RawQuery: u.RawQuery}
    		}
    	}
    	return n, matches, nil
    }
    
    // exactMatch reports whether the node's pattern exactly matches the path.
    // As a special case, if the node is nil, exactMatch return false.
    //
    // Before wildcards were introduced, it was clear that an exact match meant
    // that the pattern and path were the same string. The only other possibility
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top