Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for podMounts (0.17 sec)

  1. pkg/scheduler/internal/cache/fake/fake_cache.go

    	return nil
    }
    
    // NodeCount is a fake method for testing.
    func (c *Cache) NodeCount() int { return 0 }
    
    // PodCount is a fake method for testing.
    func (c *Cache) PodCount() (int, error) { return 0, nil }
    
    // Dump is a fake method for testing.
    func (c *Cache) Dump() *internalcache.Dump {
    	return &internalcache.Dump{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/cache/interface.go

    type Cache interface {
    	// NodeCount returns the number of nodes in the cache.
    	// DO NOT use outside of tests.
    	NodeCount() int
    
    	// PodCount returns the number of pods in the cache (including those from deleted nodes).
    	// DO NOT use outside of tests.
    	PodCount() (int, error)
    
    	// AssumePod assumes a pod scheduled and aggregates the pod's information into its node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. src/internal/bytealg/count_ppc64x.s

    	LXVD2X	(R21)(R3), V2
    	VCMPEQUB V2, V1, V2
    	VCMPEQUB V0, V1, V0
    	VPOPCNTD V2, V2		// A match is 0xFF or 0. Count the bits into doubleword buckets.
    	VPOPCNTD V0, V0
    	VADDUDM	V0, V4, V4	// Accumulate the popcounts. They are 8x the count.
    	VADDUDM	V2, V5, V5	// The count will be fixed up afterwards.
    	ADD	$32, R3
    	BDNZ	cmploop
    
    	VADDUDM	V4, V5, V5
    	MFVSRD	V5, R18
    	VSLDOI	$8, V5, V5, V5
    	MFVSRD	V5, R21
    	ADD	R21, R18, R18
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 20:30:44 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top