Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for HiddenIfEmpty (0.17 sec)

  1. internal/config/scanner/scanner.go

    	},
    	config.KV{
    		Key:           IdleSpeed,
    		Value:         "",
    		HiddenIfEmpty: true,
    	},
    	config.KV{
    		Key:   ExcessVersions,
    		Value: "100",
    	},
    	config.KV{
    		Key:   ExcessFolders,
    		Value: "50000",
    	},
    
    	// Deprecated Oct 2022
    	config.KV{
    		Key:           Delay,
    		Value:         "",
    		HiddenIfEmpty: true,
    	},
    	// Deprecated Oct 2022
    	config.KV{
    		Key:           MaxWait,
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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