Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for IGNORE (7.6 sec)

  1. internal/logger/config.go

    		if v, ok := cfg.HTTP[k]; ok && v.Enabled {
    			// This target is already enabled using the
    			// legacy environment variables, ignore.
    			continue
    		}
    		subSysTarget := config.LoggerWebhookSubSys
    		if k != config.Default {
    			subSysTarget = config.LoggerWebhookSubSys + config.SubSystemSeparator + k
    		}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 15.8K bytes
    - Viewed (0)
  2. cmd/config.go

    			}
    			if withData {
    				data, err := readConfig(ctx, objAPI, obj.Name)
    				if err != nil {
    					// ignore history file if not readable.
    					continue
    				}
    
    				data, err = decryptData(data, obj.Name)
    				if err != nil {
    					// ignore history file that cannot be loaded.
    					continue
    				}
    
    				cfgEntry.Data = string(data)
    			}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Aug 23 10:07:06 GMT 2023
    - 6K bytes
    - Viewed (0)
  3. internal/config/identity/plugin/config.go

    		entry = &h.currentMinute
    	case reqTimeMinute.Equal(h.lastFullMinute.statsTime):
    		entry = &h.lastFullMinute
    	default:
    		// This request is too old, it should never happen, ignore it as we
    		// cannot return an error.
    		return
    	}
    
    	// Update stats
    	if isSuccess {
    		if entry.maxRttMs < rttMs {
    			entry.maxRttMs = rttMs
    		}
    		entry.rttMsSum += rttMs
    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)
  4. internal/config/config.go

    func CheckValidKeys(subSys string, kv KVS, validKVS KVS, deprecatedKeys ...string) error {
    	nkv := KVS{}
    	for _, kv := range kv {
    		// Comment is a valid key, its also fully optional
    		// ignore it since it is a valid key for all
    		// sub-systems.
    		if kv.Key == Comment {
    			continue
    		}
    		var skip bool
    		for _, deprecatedKey := range deprecatedKeys {
    			if kv.Key == deprecatedKey {
    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