Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for p1Usage (0.1 sec)

  1. pkg/kubelet/eviction/helpers.go

    			return cmpBool(!p1Found, !p2Found)
    		}
    
    		p1Usage, p1Err := podDiskUsage(p1Stats, p1, fsStatsToMeasure)
    		p2Usage, p2Err := podDiskUsage(p2Stats, p2, fsStatsToMeasure)
    		if p1Err != nil || p2Err != nil {
    			// prioritize evicting the pod which had an error getting stats
    			return cmpBool(p1Err != nil, p2Err != nil)
    		}
    
    		p1Disk := p1Usage[diskResource]
    		p2Disk := p2Usage[diskResource]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    		// promptly ejected from its queue.  The goroutine doing the APF handling writes an HTTP
    		// response message with status 429.
    		// The timeout handler invokes its inner handler in one goroutine while reacting to the
    		// passage of time in its original goroutine.  That reaction to a time out consists of either
    		// (a) writing an HTTP response message with status 504 to indicate the timeout or (b) doing an
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  3. pkg/proxy/nftables/proxier_test.go

    		add rule ip kube-proxy endpoint-2OCDJSZQ-ns3/svc3/tcp/p80__10.0.3.1/80 meta l4proto tcp dnat to 10.0.3.1:80
    		`)
    	assertNFTablesTransactionEqual(t, getLine(), expected, nft.Dump())
    
    	// Fake the passage of time and confirm that the stale chains get deleted.
    	ageStaleChains()
    	fp.syncProxyRules()
    	expected = baseRules + dedent.Dedent(`
    		add element ip kube-proxy cluster-ips { 172.30.0.41 }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
Back to top