Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NORMAL_PRIORITY_CLASS (0.17 sec)

  1. cmd/kubelet/app/options/osflags_windows.go

    	// The default priority class associated with any process in Windows is NORMAL_PRIORITY_CLASS. Keeping it as is
    	// to maintain backwards compatibility.
    	// Source: https://docs.microsoft.com/en-us/windows/win32/procthread/scheduling-priorities
    	fs.StringVar(&f.WindowsPriorityClass, "windows-priorityclass", "NORMAL_PRIORITY_CLASS",
    		"Set the PriorityClass associated with kubelet process, the default ones are available at "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  2. cmd/kubelet/app/init_windows.go

    	var priorityClassMap = map[string]uint32{
    		"IDLE_PRIORITY_CLASS":         uint32(windows.IDLE_PRIORITY_CLASS),
    		"BELOW_NORMAL_PRIORITY_CLASS": uint32(windows.BELOW_NORMAL_PRIORITY_CLASS),
    		"NORMAL_PRIORITY_CLASS":       uint32(windows.NORMAL_PRIORITY_CLASS),
    		"ABOVE_NORMAL_PRIORITY_CLASS": uint32(windows.ABOVE_NORMAL_PRIORITY_CLASS),
    		"HIGH_PRIORITY_CLASS":         uint32(windows.HIGH_PRIORITY_CLASS),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 01:54:34 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  3. cmd/kubelet/app/options/options.go

    	// WindowsPriorityClass sets the priority class associated with the Kubelet process
    	// Its corresponding flag only gets registered in Windows builds
    	// The default priority class associated with any process in Windows is NORMAL_PRIORITY_CLASS. Keeping it as is
    	// to maintain backwards compatibility.
    	// Source: https://docs.microsoft.com/en-us/windows/win32/procthread/scheduling-priorities
    	WindowsPriorityClass string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    const (
    	// Priority class.
    	ABOVE_NORMAL_PRIORITY_CLASS   = 0x00008000
    	BELOW_NORMAL_PRIORITY_CLASS   = 0x00004000
    	HIGH_PRIORITY_CLASS           = 0x00000080
    	IDLE_PRIORITY_CLASS           = 0x00000040
    	NORMAL_PRIORITY_CLASS         = 0x00000020
    	PROCESS_MODE_BACKGROUND_BEGIN = 0x00100000
    	PROCESS_MODE_BACKGROUND_END   = 0x00200000
    	REALTIME_PRIORITY_CLASS       = 0x00000100
    )
    
    /* wintrust.h constants for WinVerifyTrustEx */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
Back to top