Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for YellowBold (0.07 sec)

  1. cmd/server-main.go

    		warnings = append(warnings, color.YellowBold("Detected Linux kernel version older than 4.0 release, there are some known potential performance problems with this kernel version. MinIO recommends a minimum of 4.x linux kernel version for best performance"))
    	}
    
    	maxProcs := runtime.GOMAXPROCS(0)
    	cpuProcs := runtime.NumCPU()
    	if maxProcs < cpuProcs {
    Registered: Sun Oct 27 19:28:09 UTC 2024
    - Last Modified: Tue Sep 24 21:50:11 UTC 2024
    - 35.2K bytes
    - Viewed (3)
  2. internal/color/color.go

    		}
    		return fmt.Sprint
    	}()
    
    	CyanBold = func() func(a ...interface{}) string {
    		if IsTerminal() {
    			return color.New(color.FgCyan, color.Bold).SprintFunc()
    		}
    		return fmt.Sprint
    	}()
    
    	YellowBold = func() func(format string, a ...interface{}) string {
    		if IsTerminal() {
    			return color.New(color.FgYellow, color.Bold).SprintfFunc()
    		}
    		return fmt.Sprintf
    	}()
    
    Registered: Sun Oct 27 19:28:09 UTC 2024
    - Last Modified: Wed May 01 17:57:52 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top