Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for NewStringSet (0.18 sec)

  1. cmd/site-replication.go

    	numSites := len(sris)
    	allBuckets := set.NewStringSet() // across sites
    	allUsers := set.NewStringSet()
    	allUserWPolicies := set.NewStringSet()
    	allGroups := set.NewStringSet()
    	allGroupWPolicies := set.NewStringSet()
    	allILMExpiryRules := set.NewStringSet()
    
    	allPolicies := set.NewStringSet()
    	for _, sri := range sris {
    		for b := range sri.Buckets {
    			allBuckets.Add(b)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 185.1K bytes
    - Viewed (0)
  2. cmd/admin-handlers.go

    func createHostAnonymizer() map[string]string {
    	if !globalIsDistErasure {
    		return createHostAnonymizerForFSMode()
    	}
    
    	hostAnonymizer := map[string]string{}
    	hosts := set.NewStringSet()
    	srvrIdx := 0
    
    	for poolIdx, pool := range globalEndpoints {
    		for _, endpoint := range pool.Endpoints {
    			if !hosts.Contains(endpoint.Host) {
    				hosts.Add(endpoint.Host)
    				srvrIdx++
    			}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Oct 04 11:32:32 UTC 2024
    - 99.7K bytes
    - Viewed (0)
Back to top