Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NORMAL_PRIORITY_CLASS (0.13 sec)

  1. 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)
  2. 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