Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for GatherNd (0.11 sec)

  1. src/runtime/mgcsweep.go

    // bytes of the ultimately allocated span will be available for object
    // allocation.
    //
    // deductSweepCredit is the core of the "proportional sweep" system.
    // It uses statistics gathered by the garbage collector to perform
    // enough sweeping so that all pages are swept during the concurrent
    // sweep phase between GC cycles.
    //
    // mheap_ must NOT be locked.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  2. pkg/proxy/winkernel/proxier.go

    	endpointUpdateResult := proxier.endpointsMap.Update(proxier.endpointsChanges)
    
    	deletedUDPClusterIPs := serviceUpdateResult.DeletedUDPClusterIPs
    	// merge stale services gathered from EndpointsMap.Update
    	for _, svcPortName := range endpointUpdateResult.NewlyActiveUDPServices {
    		if svcInfo, ok := proxier.svcPortMap[svcPortName]; ok && svcInfo != nil && svcInfo.Protocol() == v1.ProtocolUDP {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  3. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		nc.podUpdateQueue.AddRateLimited(podItem)
    		return
    	}
    
    	nodeName := pod.Spec.NodeName
    
    	nodeHealth := nc.nodeHealthMap.getDeepCopy(nodeName)
    	if nodeHealth == nil {
    		// Node data is not gathered yet or node has been removed in the meantime.
    		return
    	}
    
    	_, err = nc.nodeLister.Get(nodeName)
    	if err != nil {
    		logger.Info("Failed to read node", "node", klog.KRef("", nodeName), "err", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    				continue
    			}
    
    			labelMatch = true
    			sum += int(metric.GetGauge().GetValue())
    		}
    	}
    	if !familyMatch {
    		return fmt.Errorf("expected to find the metric family: %s in the gathered result", name)
    	}
    	if !labelMatch {
    		return fmt.Errorf("expected to find metrics with matching labels: %#+v", labelFilter)
    	}
    	if wantValue != sum {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    		// See runtime/unsafepoint_test.go.
    		pmain.Internal.OmitDebug = false
    	}
    
    	if !cfg.BuildN {
    		// writeTestmain writes _testmain.go,
    		// using the test description gathered in t.
    		if err := os.WriteFile(testDir+"_testmain.go", *pmain.Internal.TestmainGo, 0666); err != nil {
    			return nil, nil, nil, err
    		}
    	}
    
    	// Set compile objdir to testDir we've already created,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top