- Sort Score
- Num 10 results
- Language All
Results 1 - 5 of 5 for HiddenIfEmpty (0.07 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
internal/config/scanner/scanner.go
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri May 24 23:05:23 GMT 2024 - 5.5K bytes - Click Count (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"`Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 5.3K bytes - Click Count (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: "", },Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 17.3K bytes - Click Count (0) -
internal/config/api/api.go
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 11.5K bytes - Click Count (1) -
internal/config/config.go
maps.Copy(HelpDeprecatedSubSysMap, helpDeprecatedKVMap) } // 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 {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 37.7K bytes - Click Count (0)