Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for user4 (0.07 sec)

  1. cmd/iam-store.go

    			return true
    		}
    
    		if !usersSet.IsEmpty() && !usersSet.Contains(user) {
    			return true
    		}
    
    		ps := mappedPolicy.toSlice()
    		sort.Strings(ps)
    		r = append(r, madmin.UserPolicyEntities{
    			User:     user,
    			Policies: ps,
    		})
    		return true
    	})
    
    	stsMap := xsync.NewMapOf[string, MappedPolicy]()
    	for _, user := range users {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  2. cmd/iam.go

    //
    // - inherited from parent - this is the case for AssumeRole API, where the
    // parent user is an actual real user with their own (permanent) credentials and
    // policy association.
    //
    // - inherited from "virtual" parent - this is the case for AssumeRoleWithLDAP
    // where the parent user is the DN of the actual LDAP user. The parent user
    // itself cannot login, but the policy associated with them determines the base
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. cmd/bucket-handlers.go

    	if errCode != ErrNone {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(errCode), r.URL)
    		return
    	}
    
    	if len(fanOutEntries) > 0 {
    		// Once signature is validated, check if the user has
    		// explicit permissions for the user.
    		if !globalIAMSys.IsAllowed(policy.Args{
    			AccountName:     cred.AccessKey,
    			Groups:          cred.Groups,
    			Action:          policy.PutObjectFanOutAction,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  4. cmd/api-errors.go

    	},
    	ErrAdminNoSuchUser: {
    		Code:           "XMinioAdminNoSuchUser",
    		Description:    "The specified user does not exist.",
    		HTTPStatusCode: http.StatusNotFound,
    	},
    	ErrAdminNoSuchUserLDAPWarn: {
    		Code:           "XMinioAdminNoSuchUser",
    		Description:    "The specified user does not exist. If you meant a user in LDAP, use `mc idp ldap`",
    		HTTPStatusCode: http.StatusNotFound,
    	},
    	ErrAdminNoSuchGroup: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conversion.go

    // Mixed hostname and IP - doesn't make sense; user should define the IP in service
    // NamedAddress - Service has no concept of named address. For cloud's that have named addresses they can be configured by annotations,
    //
    //	which users can add to the Gateway.
    func IsManaged(gw *k8s.GatewaySpec) bool {
    	if len(gw.Addresses) == 0 {
    		return true
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/sidecar_simulation_test.go

    			Call: simulation.Call{
    				Port:     70,
    				Protocol: simulation.TCP,
    				TLS:      simulation.MTLS,
    				CallMode: simulation.CallModeInbound,
    			},
    			Disabled: simulation.Result{
    				// This is probably a user error, but there is no reason we should block mTLS traffic
    				// we just will not terminate it
    				ClusterMatched: "inbound|70||",
    			},
    			Permissive: simulation.Result{
    				ClusterMatched: "inbound|70||",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. pilot/pkg/model/telemetry_logging_test.go

    								"x_forwarded_for":                {Kind: &structpb.Value_StringValue{StringValue: "%REQ(X-FORWARDED-FOR)%"}},
    								"user_agent":                     {Kind: &structpb.Value_StringValue{StringValue: "%REQ(USER-AGENT)%"}},
    								"request_id":                     {Kind: &structpb.Value_StringValue{StringValue: "%REQ(X-REQUEST-ID)%"}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_test.go

    	//
    	// Even if a user explicitly created a Sidecar config with an ingress listener for a privileged port,
    	// it is still not worth it creating such a listener if we already known that a proxy will end up
    	// rejecting it.
    	testPrivilegedPorts(t, func(t *testing.T, proxy *model.Proxy, port uint32) []*listener.Listener {
    		// simulate user-defined Sidecar config with an ingress listener for a given port
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top