Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RegisterHelpSubSys (0.17 sec)

  1. internal/config/config.go

    // help for each sub-system key.
    var HelpSubSysMap = map[string]HelpKVS{}
    
    // RegisterHelpSubSys - this function saves
    // input help KVS for each sub-system globally,
    // this function should be called only once
    // preferably in during `init()`.
    func RegisterHelpSubSys(helpKVSMap map[string]HelpKVS) {
    	for subSys, hkvs := range helpKVSMap {
    		HelpSubSysMap[subSys] = hkvs
    	}
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Mar 02 05:11:03 GMT 2024
    - 37.3K bytes
    - Viewed (0)
  2. cmd/config-current.go

    		config.CallhomeSubSys:       callhome.HelpCallhome,
    		config.DriveSubSys:          drive.HelpDrive,
    		config.CacheSubSys:          cache.Help,
    		config.BrowserSubSys:        browser.Help,
    	}
    
    	config.RegisterHelpSubSys(helpMap)
    
    	// save top-level help for deprecated sub-systems in a separate map.
    	deprecatedHelpKVMap := map[string]config.HelpKV{
    		config.RegionSubSys: {
    			Key:         config.RegionSubSys,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 20:08:20 GMT 2024
    - 30.8K bytes
    - Viewed (0)
Back to top