Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for helper (0.15 sec)

  1. internal/config/identity/plugin/config.go

    		return config.DefaultHelpPostfix(DefaultKVS, key)
    	}
    
    	// Help for Identity Plugin
    	Help = config.HelpKVS{
    		config.HelpKV{
    			Key:         URL,
    			Description: `plugin hook endpoint (HTTP(S)) e.g. "http://localhost:8181/path/to/endpoint"` + defaultHelpPostfix(URL),
    			Type:        "url",
    		},
    		config.HelpKV{
    			Key:         AuthToken,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 13.3K bytes
    - Viewed (3)
  2. internal/config/policy/plugin/config.go

    func (a *Args) Validate() error {
    	req, err := http.NewRequest(http.MethodPost, a.URL.String(), bytes.NewReader([]byte("")))
    	if err != nil {
    		return err
    	}
    
    	req.Header.Set("Content-Type", "application/json")
    	if a.AuthToken != "" {
    		req.Header.Set("Authorization", a.AuthToken)
    	}
    
    	client := &http.Client{Transport: a.Transport}
    	resp, err := client.Do(req)
    	if err != nil {
    		return err
    	}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Sep 14 21:50:16 GMT 2023
    - 5.8K bytes
    - Viewed (0)
  3. internal/config/config.go

    	}
    }
    
    // HelpDeprecatedSubSysMap - help for all deprecated sub-systems, that may be
    // removed in the future.
    var HelpDeprecatedSubSysMap = map[string]HelpKV{}
    
    // RegisterHelpDeprecatedSubSys - saves input help KVS for deprecated
    // sub-systems globally. Should be called only once at init.
    func RegisterHelpDeprecatedSubSys(helpDeprecatedKVMap map[string]HelpKV) {
    	for k, v := range helpDeprecatedKVMap {
    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)
Back to top