Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for require (0.17 sec)

  1. internal/config/config.go

    			prevK = kv[0]
    			kvs.Set(prevK, madmin.SanitizeValue(kv[1]))
    			continue
    		}
    		return false, Errorf("key '%s', cannot have empty value", kv[0])
    	}
    
    	_, ok := kvs.Lookup(Enable)
    	// Check if state is required
    	_, enableRequired := defaultKVS[subSys].Lookup(Enable)
    	if !ok && enableRequired {
    		// implicit state "on" if not specified.
    		kvs.Set(Enable, EnableOn)
    	}
    
    	var currKVS KVS
    	ck, ok := c[subSys][tgt]
    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