Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for deng (0.16 sec)

  1. common/config/.golangci.yml

      depguard:
        rules:
          DenyGogoProtobuf:
            files:
              - $all
            deny:
              - pkg: github.com/gogo/protobuf
                desc: "gogo/protobuf is deprecated, use golang/protobuf"
          # deny for all go files
          AllGoFiles:
            files:
              - $all
            deny:
              - pkg: golang.org/x/net/http2/h2c
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 19:22:39 GMT 2024
    - 11K bytes
    - Viewed (0)
  2. cmd/admin-handlers-idp-ldap.go

    					errors.New("service accounts cannot be generated for temporary credentials without parent")), r.URL)
    				return
    			}
    			targetUser = requestorParentUser
    		}
    		targetGroups = requestorGroups
    
    		// Deny if the target user is not LDAP
    		foundLDAPDN, err := globalIAMSys.LDAPConfig.GetValidatedDNForUsername(targetUser)
    		if err != nil {
    			writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    			return
    		}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 13.3K bytes
    - Viewed (0)
Back to top