Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Settings (0.14 sec)

  1. internal/config/subnet/config.go

    	"github.com/minio/pkg/v2/env"
    	xnet "github.com/minio/pkg/v2/net"
    )
    
    const (
    	baseURL    = "https://subnet.min.io"
    	baseURLDev = "http://localhost:9000"
    )
    
    // DefaultKVS - default KV config for subnet settings
    var DefaultKVS = config.KVS{
    	config.KV{
    		Key:   config.License, // Deprecated Dec 2021
    		Value: "",
    	},
    	config.KV{
    		Key:   config.APIKey,
    		Value: "",
    	},
    	config.KV{
    		Key:   config.Proxy,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri Nov 24 17:59:35 GMT 2023
    - 3.8K bytes
    - Viewed (0)
  2. internal/config/config.go

    				}
    			}
    			if _, ok := cp[subSys]; !ok {
    				rnSubSys, ok := renamedSubsys[subSys]
    				if !ok {
    					// A config subsystem was removed or server was downgraded.
    					continue
    				}
    				// Copy over settings from previous sub-system
    				// to newly renamed sub-system
    				for _, kv := range cp[rnSubSys][Default] {
    					_, ok := c[subSys][tgt].Lookup(kv.Key)
    					if !ok {
    						ckvs.Set(kv.Key, kv.Value)
    					}
    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