Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for flat (0.13 sec)

  1. cmd/site-replication.go

    		return []byte{}, err
    	}
    
    	return finalConfigData, nil
    }
    
    func ilmExpiryReplicationEnabled(sites map[string]madmin.PeerInfo) bool {
    	flag := true
    	for _, pi := range sites {
    		flag = flag && pi.ReplicateILMExpiry
    	}
    	return flag
    }
    
    type siteReplicatorCred struct {
    	Creds auth.Credentials
    	sync.RWMutex
    }
    
    // Get or attempt to load site replicator credentials from disk.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 184.2K bytes
    - Viewed (1)
  2. cmd/server_test.go

    	// The assertion is removed from this block since the purpose of this block is to find races
    	// The purpose this block is not to check for correctness of functionality
    	// Run the test with -race flag to utilize this
    	var wg sync.WaitGroup
    	for i := 0; i < testConcurrencyLevel; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			// HTTP request to create the bucket.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 108K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    // sequence.
    //
    // If no client token is provided, and a heal sequence is in progress
    // an error is returned with information about the running heal
    // sequence. However, if the force-start flag is provided, the server
    // aborts the running heal sequence and starts a new one.
    func (a adminAPIHandlers) HealHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
Back to top