Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for HiddenIfEmpty (0.26 sec)

  1. 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)
  2. 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)
  3. 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