Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for HiddenIfEmpty (0.08 sec)

  1. internal/config/identity/openid/openid.go

    		},
    		config.KV{
    			Key:   RolePolicy,
    			Value: "",
    		},
    		config.KV{
    			Key:           ClaimPrefix,
    			Value:         "",
    			HiddenIfEmpty: true,
    		},
    		config.KV{
    			Key:           RedirectURI,
    			Value:         "",
    			HiddenIfEmpty: true,
    		},
    		config.KV{
    			Key:   RedirectURIDynamic,
    			Value: "off",
    		},
    		config.KV{
    			Key:   Scopes,
    			Value: "",
    		},
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Jul 10 20:16:44 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. internal/config/notify/parse.go

    			Key:           target.NATSStreaming,
    			Value:         config.EnableOff,
    			HiddenIfEmpty: true,
    		},
    		config.KV{
    			Key:           target.NATSStreamingAsync,
    			Value:         config.EnableOff,
    			HiddenIfEmpty: true,
    		},
    		config.KV{
    			Key:           target.NATSStreamingMaxPubAcksInFlight,
    			Value:         "0",
    			HiddenIfEmpty: true,
    		},
    		config.KV{
    			Key:           target.NATSStreamingClusterID,
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Sep 06 23:06:30 UTC 2024
    - 47K bytes
    - Viewed (0)
  3. internal/config/api/api.go

    			Value: "24h",
    		},
    		config.KV{
    			Key:   apiDeleteCleanupInterval,
    			Value: "5m",
    		},
    		config.KV{
    			Key:           apiDisableODirect,
    			Value:         "",
    			HiddenIfEmpty: true,
    		},
    		config.KV{
    			Key:   apiODirect,
    			Value: config.EnableOn,
    		},
    		config.KV{
    			Key:   apiGzipObjects,
    			Value: config.EnableOff,
    		},
    		config.KV{
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Aug 16 08:43:49 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. internal/config/storageclass/storage-class.go

    		},
    		config.KV{
    			Key:   ClassRRS,
    			Value: "EC:1",
    		},
    		config.KV{
    			Key:   Optimize,
    			Value: "availability",
    		},
    		config.KV{
    			Key:           InlineBlock,
    			Value:         "",
    			HiddenIfEmpty: true,
    		},
    	}
    )
    
    // StorageClass - holds storage class information
    type StorageClass struct {
    	Parity int
    }
    
    // ConfigLock is a global lock for storage-class config
    var ConfigLock sync.RWMutex
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 12 12:24:04 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. internal/config/config.go

    		HelpDeprecatedSubSysMap[k] = v
    	}
    }
    
    // KV - is a shorthand of each key value.
    type KV struct {
    	Key   string `json:"key"`
    	Value string `json:"value"`
    
    	HiddenIfEmpty bool `json:"-"`
    }
    
    func (kv KV) String() string {
    	var s strings.Builder
    	s.WriteString(kv.Key)
    	s.WriteString(KvSeparator)
    	spc := madmin.HasSpace(kv.Value)
    	if spc {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Sep 03 18:23:41 UTC 2024
    - 37.7K bytes
    - Viewed (0)
Back to top