Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 106 for npidle (0.17 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.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.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.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.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top