Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 775 for Nodes (0.05 sec)

  1. src/text/template/parse/node.go

    )
    
    // Nodes.
    
    // ListNode holds a sequence of nodes.
    type ListNode struct {
    	NodeType
    	Pos
    	tr    *Tree
    	Nodes []Node // The element nodes in lexical order.
    }
    
    func (t *Tree) newList(pos Pos) *ListNode {
    	return &ListNode{tr: t, NodeType: NodeList, Pos: pos}
    }
    
    func (l *ListNode) append(n Node) {
    	l.Nodes = append(l.Nodes, n)
    }
    
    func (l *ListNode) tree() *Tree {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. src/go/parser/parser_test.go

    	{name: "arraylit", format: "package main; var x = «[1]any{«nil»}»", parseMultiplier: 2},         // Parser nodes: UnaryExpr, CompositeLit
    	{name: "structlit", format: "package main; var x = «struct{x any}{«nil»}»", parseMultiplier: 2}, // Parser nodes: UnaryExpr, CompositeLit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/types_test.go

    					"node3": NewStatus(Unschedulable, "Node(s) failed PreFilter plugin FalsePreFilter"),
    				},
    			},
    			wantReasonMsg: "0/3 nodes are available: Node(s) failed PreFilter plugin FalsePreFilter.",
    		},
    		{
    			name:        "nodes failed Prefilter plugin and the preemption also failed",
    			numAllNodes: 3,
    			diagnosis: Diagnosis{
    				PreFilterMsg: "Node(s) failed PreFilter plugin FalsePreFilter",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/flowcontrol/bootstrap/default.go

    		flowcontrol.FlowDistinguisherMethodByUserType,
    		flowcontrol.PolicyRulesWithSubjects{
    			Subjects: groups(user.NodesGroup), // the nodes group
    			ResourceRules: []flowcontrol.ResourcePolicyRule{
    				resourceRule(
    					[]string{flowcontrol.VerbAll},
    					[]string{corev1.GroupName},
    					[]string{"nodes", "nodes/status"},
    					[]string{flowcontrol.NamespaceEvery},
    					true),
    				resourceRule(
    					[]string{flowcontrol.VerbAll},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  5. maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraph.java

         *
         * @param tree "dirty" tree root
         * @param versionedVertices true if graph nodes should be versioned (different versions -> different nodes)
         * @param scopedVertices true if graph nodes should be versioned and scoped
         * (different versions and/or scopes -> different nodes)
         *
         */
        public MetadataGraph(MetadataTreeNode tree, boolean versionedVertices, boolean scopedVertices)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Oct 05 18:41:13 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  6. internal/dsync/drwmutex.go

    		wg.Add(1)
    		// Send refresh request to all nodes
    		go func(index int, c NetLocker) {
    			defer wg.Done()
    			c.ForceUnlock(ctx, args)
    		}(index, c)
    	}
    	wg.Wait()
    }
    
    type refreshResult struct {
    	offline   bool
    	refreshed bool
    }
    
    // Refresh the given lock in all nodes, return true to indicate if a lock
    // does not exist in enough quorum nodes.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  7. pkg/scheduler/scheduler.go

    	durationToExpireAssumedPod time.Duration = 0
    )
    
    // ErrNoNodesAvailable is used to describe the error that no nodes available to schedule pods.
    var ErrNoNodesAvailable = fmt.Errorf("no nodes available to schedule pods")
    
    // Scheduler watches for new unscheduled pods. It attempts to find
    // nodes that they fit on and writes bindings back to the api server.
    type Scheduler struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/builtin.go

    	}
    	types.CalcSize(t)
    	n.MarkNonNil()
    	return n
    }
    
    func walkMinMax(n *ir.CallExpr, init *ir.Nodes) ir.Node {
    	init.Append(ir.TakeInit(n)...)
    	walkExprList(n.Args, init)
    	return n
    }
    
    // generate code for print.
    func walkPrint(nn *ir.CallExpr, init *ir.Nodes) ir.Node {
    	// Hoist all the argument evaluation up before the lock.
    	walkExprListCheap(nn.Args, init)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  9. pkg/controller/daemon/update_test.go

    	if err != nil {
    		t.Fatalf("error creating DaemonSets controller: %v", err)
    	}
    	err = manager.dsStore.Add(ds)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Add five nodes and taint to one node
    	addNodes(manager.nodeStore, 0, 5, nil)
    	taints := []v1.Taint{
    		{Key: "node-role.kubernetes.io/control-plane", Effect: v1.TaintEffectNoSchedule},
    	}
    	node := newNode("node-0", nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 10 21:10:35 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity.go

    				// find the intersection of nodes.
    				s := sets.New(r.Values...)
    				if termNodeNames == nil {
    					termNodeNames = s
    				} else {
    					termNodeNames = termNodeNames.Intersection(s)
    				}
    			}
    		}
    		if termNodeNames == nil {
    			// If this term has no node.Name field affinity,
    			// then all nodes are eligible because the terms are ORed.
    			return nil, nil
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 12.6K bytes
    - Viewed (0)
Back to top