- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for HiddenIfEmpty (0.23 sec)
-
internal/config/scanner/scanner.go
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 5.5K bytes - Viewed (0) -
internal/config/policy/opa/config.go
) // DefaultKVS - default config for OPA config var ( DefaultKVS = config.KVS{ config.KV{ Key: URL, Value: "", HiddenIfEmpty: true, }, config.KV{ Key: AuthToken, Value: "", HiddenIfEmpty: true, }, } ) // Args opa general purpose policy engine configuration. type Args struct { URL *xnet.URL `json:"url"`
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Jul 10 20:16:44 UTC 2024 - 5.3K bytes - Viewed (0) -
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) -
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) -
internal/config/api/api.go
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Aug 16 08:43:49 UTC 2024 - 11.5K bytes - Viewed (0) -
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) -
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)