Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for subSystemValue (0.09 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. cmd/config-current.go

    	if len(subSys) == 0 {
    		return Help{KeysHelp: config.HelpSubSysMap[subSys]}, nil
    	}
    	subSystemValue := strings.SplitN(subSys, config.SubSystemSeparator, 2)
    	if len(subSystemValue) == 0 {
    		return Help{}, config.Errorf("invalid number of arguments %s", subSys)
    	}
    
    	subSys = subSystemValue[0]
    
    	subSysHelp, ok := config.HelpSubSysMap[""].Lookup(subSys)
    	if !ok {
    Created: 2026-04-05 19:28
    - Last Modified: 2025-08-29 02:39
    - 28.5K bytes
    - Click Count (0)
Back to Top