Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for is_empty (0.16 sec)

  1. cmd/iam-store.go

    		newPolicySet = existingPolicySet.Difference(policiesToUpdate)
    	}
    	// We return an error if the requested policy update will have no effect.
    	if policiesToUpdate.IsEmpty() {
    		err = errNoPolicyToAttachOrDetach
    		return
    	}
    
    	newPolicies := newPolicySet.ToSlice()
    	newPolicyMapping.Policies = strings.Join(newPolicies, ",")
    	newPolicyMapping.UpdatedAt = UTCNow()
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sat Apr 27 10:04:10 GMT 2024
    - 75.2K bytes
    - Viewed (2)
  2. cmd/bucket-handlers.go

    			if !ok {
    				bucketsToBeUpdated.Add(bucket.Name)
    				continue
    			}
    			if !globalDomainIPs.Intersection(set.CreateStringSet(getHostsSlice(r)...)).IsEmpty() {
    				if globalDomainIPs.Difference(set.CreateStringSet(getHostsSlice(r)...)).IsEmpty() && !domainMissing {
    					// No difference in terms of domainIPs and nothing
    					// has changed so we don't change anything on the etcd.
    					//
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 16:27:27 GMT 2024
    - 61.6K bytes
    - Viewed (0)
  3. cmd/admin-handlers-users.go

    				writeErrorResponseJSON(ctx, w, importErrorWithAPIErr(ctx, ErrAdminConfigBadJSON, err, allPoliciesFile, ""), r.URL)
    				return
    			}
    			for policyName, policy := range allPolicies {
    				if policy.IsEmpty() {
    					err = globalIAMSys.DeletePolicy(ctx, policyName, true)
    				} else {
    					_, err = globalIAMSys.SetPolicy(ctx, policyName, policy)
    				}
    				if err != nil {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 12:41:13 GMT 2024
    - 77.5K bytes
    - Viewed (0)
Back to top