Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 56 for nodeInfos (0.14 sec)

  1. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration_test.go

    		t.Run(test.name, func(t *testing.T) {
    			_, ctx := ktesting.NewTestContext(t)
    			nodeInfo := framework.NewNodeInfo()
    			nodeInfo.SetNode(test.node)
    			p, err := New(ctx, nil, nil, feature.Features{})
    			if err != nil {
    				t.Fatalf("creating plugin: %v", err)
    			}
    			gotStatus := p.(framework.FilterPlugin).Filter(ctx, nil, test.pod, nodeInfo)
    			if !reflect.DeepEqual(gotStatus, test.wantStatus) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. pkg/scheduler/scheduler_test.go

    func (*filterWithoutEnqueueExtensionsPlugin) Name() string { return filterWithoutEnqueueExtensions }
    
    func (*filterWithoutEnqueueExtensionsPlugin) Filter(_ context.Context, _ *framework.CycleState, _ *v1.Pod, _ *framework.NodeInfo) *framework.Status {
    	return nil
    }
    
    var hintFromFakeNode = framework.QueueingHint(100)
    
    type fakeNodePlugin struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_getters.go

    }
    
    // getNodeAnyWay() must return a *v1.Node which is required by RunGeneralPredicates().
    // The *v1.Node is obtained as follows:
    // Return kubelet's nodeInfo for this node, except on error or if in standalone mode,
    // in which case return a manufactured nodeInfo representing a node with no pods,
    // zero capacity, and the default labels.
    func (kl *Kubelet) getNodeAnyWay() (*v1.Node, error) {
    	if kl.kubeClient != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/devicemanager/manager.go

    // and if necessary, updates allocatableResource in nodeInfo to at least equal to
    // the allocated capacity. This allows pods that have already been scheduled on
    // the node to pass GeneralPredicates admission checking even upon device plugin failure.
    func (m *ManagerImpl) sanitizeNodeAllocatable(node *schedulerframework.NodeInfo) {
    	var newAllocatableResource *schedulerframework.Resource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  5. cmd/kube-scheduler/app/server_test.go

    	return nil, nil
    }
    
    func (*foo) PreFilterExtensions() framework.PreFilterExtensions {
    	return nil
    }
    
    func (*foo) Filter(_ context.Context, _ *framework.CycleState, _ *v1.Pod, nodeInfo *framework.NodeInfo) *framework.Status {
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    	Peripheries int                    // An optional number of borders to place around a node
    	URL         string                 // An optional url link to add to a node
    	Formatter   func(*NodeInfo) string // An optional formatter for the node's label
    }
    
    // DotConfig contains attributes about how a graph should be
    // constructed and how it should look.
    type DotConfig struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/report/report.go

    	objfiles := make(map[string]int)
    	files := make(map[string]int)
    	names := make(map[string]int)
    
    	// prevInfo points to the previous NodeInfo.
    	// It is used to group cost lines together as much as possible.
    	var prevInfo *graph.NodeInfo
    	for _, n := range g.Nodes {
    		if prevInfo == nil || n.Info.Objfile != prevInfo.Objfile || n.Info.File != prevInfo.File || n.Info.Name != prevInfo.Name {
    			fmt.Fprintln(w)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity_test.go

    		t.Run(test.name, func(t *testing.T) {
    			_, ctx := ktesting.NewTestContext(t)
    			node := v1.Node{ObjectMeta: metav1.ObjectMeta{
    				Name:   test.nodeName,
    				Labels: test.labels,
    			}}
    			nodeInfo := framework.NewNodeInfo()
    			nodeInfo.SetNode(&node)
    
    			p, err := New(ctx, &test.args, nil)
    			if err != nil {
    				t.Fatalf("Creating plugin: %v", err)
    			}
    
    			state := framework.NewCycleState()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 38.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/node.yaml

        sizeBytes: 45587362
      - names:
        - prom/prometheus@sha256:483f4c9d7733699ba79facca9f8bcce1cef1af43dfc3e7c5a1882aa85f53cb74
        - prom/prometheus:v1.1.3
        sizeBytes: 45493941
      nodeInfo:
        architecture: amd64
        bootID: a32eca78-4ad4-4b76-9252-f143d6c2ae61
        containerRuntimeVersion: docker://17.3.2
        kernelVersion: 4.14.127+
        kubeProxyVersion: v1.11.10-gke.5
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. cmd/notification.go

    	}
    	return reply
    }
    
    func (sys *NotificationSys) addNodeErr(nodeInfo madmin.NodeInfo, peerClient *peerRESTClient, err error) {
    	addr := peerClient.host.String()
    	reqInfo := (&logger.ReqInfo{}).AppendTags("remotePeer", addr)
    	ctx := logger.SetReqInfo(GlobalContext, reqInfo)
    	peersLogOnceIf(ctx, err, "add-node-err-"+addr)
    	nodeInfo.SetAddr(addr)
    	nodeInfo.SetError(err.Error())
    }
    
    // GetSysErrors - Memory information
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
Back to top