Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 130 for npidle (0.14 sec)

  1. pkg/controller/volume/persistentvolume/framework_test.go

    	r.ctrl.runningOperations.WaitForCompletion()
    	// Check every 10ms if the controller does something and stop if it's
    	// idle.
    	oldChanges := -1
    	for {
    		time.Sleep(10 * time.Millisecond)
    		changes := r.GetChangeCount()
    		if changes == oldChanges {
    			// No changes for last 10ms -> controller must be idle.
    			break
    		}
    		oldChanges = changes
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 09:54:00 UTC 2023
    - 38.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    		"during this window all incoming requests will be rejected with a status code 429 and a 'Retry-After' response header, "+
    		"in addition 'Connection: close' response header is set in order to tear down the TCP connection when idle.")
    
    	fs.DurationVar(&s.ShutdownWatchTerminationGracePeriod, "shutdown-watch-termination-grace-period", s.ShutdownWatchTerminationGracePeriod, ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go

    	CLOCK_UPTIME                   = 0x5
    	CLOCK_UPTIME_FAST              = 0x8
    	CLOCK_UPTIME_PRECISE           = 0x7
    	CLOCK_VIRTUAL                  = 0x1
    	CPUSTATES                      = 0x5
    	CP_IDLE                        = 0x4
    	CP_INTR                        = 0x3
    	CP_NICE                        = 0x1
    	CP_SYS                         = 0x2
    	CP_USER                        = 0x0
    	CREAD                          = 0x800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset.go

    		req.queueNoteFn(inQueue)
    	}
    }
    
    func (req *request) Finish(execFn func()) bool {
    	exec, idle := req.wait()
    	if !exec {
    		return idle
    	}
    	func() {
    		defer func() {
    			idle = req.qs.finishRequestAndDispatchAsMuchAsPossible(req)
    		}()
    
    		execFn()
    	}()
    
    	return idle
    }
    
    func (req *request) wait() (bool, bool) {
    	qs := req.qs
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 16:59:21 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/types.go

    	// ContainerRuntimeEndpoint is the endpoint of container runtime.
    	// unix domain sockets supported on Linux while npipes and tcp endpoints are supported for windows.
    	// Examples:'unix:///path/to/runtime.sock', 'npipe:////./pipe/runtime'
    	ContainerRuntimeEndpoint string
    
    	// ImageServiceEndpoint is the endpoint of container image service.
    	// If not specified the default value is ContainerRuntimeEndpoint
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/RateLimiter.java

     * acquire(1000)} will result in exactly the same throttling, if any), but it affects the throttling
     * of the <i>next</i> request. I.e., if an expensive task arrives at an idle RateLimiter, it will be
     * granted immediately, but it is the <i>next</i> request that will experience extra throttling,
     * thus paying for the cost of the expensive task.
     *
     * @author Dimitris Andreou
     * @since 13.0
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  7. src/runtime/mgc.go

    	// mcache before allocating, but idle Ps may not. Since this
    	// is necessary to sweep all spans, we need to ensure all
    	// mcaches are flushed before we start the next GC cycle.
    	//
    	// While we're here, flush the page cache for idle Ps to avoid
    	// having pages get stuck on them. These pages are hidden from
    	// the scavenger, so in small idle heaps a significant amount
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go

    	CLOCK_PROCESS_CPUTIME_ID          = 0x2
    	CLOCK_REALTIME                    = 0x0
    	CLOCK_THREAD_CPUTIME_ID           = 0x4
    	CLOCK_UPTIME                      = 0x5
    	CPUSTATES                         = 0x6
    	CP_IDLE                           = 0x5
    	CP_INTR                           = 0x4
    	CP_NICE                           = 0x1
    	CP_SPIN                           = 0x3
    	CP_SYS                            = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 78.5K bytes
    - Viewed (0)
  9. src/internal/trace/summary.go

    				s.syscallingP[ev.Proc()] = id
    				s.syscallingG[id] = ev.Proc()
    				g.lastSyscallTime = ev.Time()
    			}
    
    		// Handle procs to detect syscall blocking, which si identifiable as a
    		// proc going idle while the goroutine it was attached to is in a syscall.
    		case ResourceProc:
    			id := st.Resource.Proc()
    			old, new := st.Proc()
    			if old != new && new == ProcIdle {
    				if goid, ok := s.syscallingP[id]; ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  10. docs/metrics/v3.md

    |-------------------------------|---------|------------------------------------|----------|
    | `minio_system_cpu_avg_idle`   | `gauge` | Average CPU idle time              | `server` |
    | `minio_system_cpu_avg_iowait` | `gauge` | Average CPU IOWait time            | `server` |
    | `minio_system_cpu_load`       | `gauge` | CPU load average 1min              | `server` |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 09:36:25 UTC 2024
    - 40.9K bytes
    - Viewed (0)
Back to top