Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for union (0.12 sec)

  1. cmd/iam-store.go

    		for _, p := range policiesToUpdate.ToSlice() {
    			if _, found := cache.iamPolicyDocsMap[p]; !found {
    				err = errNoSuchPolicy
    				return
    			}
    		}
    		newPolicySet = existingPolicySet.Union(policiesToUpdate)
    	} else {
    		// policies to detach => inputPolicies ∩ existing (intersection)
    		policiesToUpdate = policiesToUpdate.Intersection(existingPolicySet)
    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/endpoint.go

    						return nil, setupType,
    							config.ErrInvalidErasureEndpoints(nil).Msg(fmt.Sprintf("same path '%s' can not be served by different port on same address", endpoint.Path))
    					}
    					pathIPMap[endpoint.Path] = IPSet.Union(hostIPSet)
    				} else {
    					pathIPMap[endpoint.Path] = hostIPSet
    				}
    			}
    		}
    
    		// Check whether same path is used for more than 1 local endpoints.
    		{
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 34.1K bytes
    - Viewed (0)
Back to top