Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for DN (0.03 sec)

  1. cmd/iam.go

    			}
    
    			if policiesDiffer {
    				return fmt.Errorf("multiple DNs map to the same LDAP DN[%s]: %v; please remove DNs that are not needed",
    					normKey, origKeys)
    			}
    
    			if len(origKeys[1:]) > 0 {
    				// Log that extra DN mappings will not be imported.
    				iamLogEvent(ctx, "import-ldap-normalize: extraneous DN mappings found for LDAP DN[%s]: %v will not be imported", origKeys[0], origKeys[1:])
    			}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. cmd/sts-handlers_test.go

    	}
    
    	cases := []struct {
    		username           string
    		dn                 string
    		expectedSSHKeyType string
    	}{
    		{
    			username:           "dillon",
    			dn:                 "uid=dillon,ou=people,ou=swengg,dc=min,dc=io",
    			expectedSSHKeyType: "ssh-ed25519",
    		},
    		{
    			username:           "liza",
    			dn:                 "uid=liza,ou=people,ou=swengg,dc=min,dc=io",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    		sys, e = UTF16PtrFromString(system)
    		if e != nil {
    			return nil, "", 0, e
    		}
    	}
    	n := uint32(50)
    	dn := uint32(50)
    	for {
    		b := make([]byte, n)
    		db := make([]uint16, dn)
    		sid = (*SID)(unsafe.Pointer(&b[0]))
    		e = LookupAccountName(sys, acc, sid, &n, &db[0], &dn, &accType)
    		if e == nil {
    			return sid, UTF16ToString(db), accType, nil
    		}
    		if e != ERROR_INSUFFICIENT_BUFFER {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. src/net/url/url_test.go

    	// fix issue https://golang.org/issue/20054
    	{
    		"magnet:?xt=urn:btih:c12fe1c06bba254a9dc9f519b335aa7c1367a88a&dn",
    		&URL{
    			Scheme:   "magnet",
    			Host:     "",
    			Path:     "",
    			RawQuery: "xt=urn:btih:c12fe1c06bba254a9dc9f519b335aa7c1367a88a&dn",
    		},
    		"magnet:?xt=urn:btih:c12fe1c06bba254a9dc9f519b335aa7c1367a88a&dn",
    	},
    	{
    		"mailto:?subject=hi",
    		&URL{
    			Scheme:   "mailto",
    			Host:     "",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. cmd/admin-handlers-users.go

    		for k, v := range cred.Claims {
    			if k == expClaim {
    				continue
    			}
    			opts.claims[k] = v
    		}
    	} else if globalIAMSys.LDAPConfig.Enabled() {
    		// In case of LDAP we need to resolve the targetUser to a DN and
    		// query their groups:
    		opts.claims[ldapUserN] = targetUser // simple username
    		var lookupResult *xldap.DNSearchResult
    		lookupResult, targetGroups, err = globalIAMSys.LDAPConfig.LookupUserDN(targetUser)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  6. src/go/types/api_test.go

    				return true
    			})
    		case "n":
    			dn = def
    		}
    	}
    
    	if gm != dm {
    		t.Errorf(`N.Method(...) returns %v for "m", but Info.Defs has %v`, gm, dm)
    	}
    	if gn != dn {
    		t.Errorf(`N.Method(...) returns %v for "m", but Info.Defs has %v`, gm, dm)
    	}
    	if dmm != dm {
    		t.Errorf(`Inside "m", r.m uses %v, want the defined func %v`, dmm, dm)
    	}
    	if dmn == dn {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    //	                       ::= dn <destructor-name>
    //
    //	<simple-id> ::= <source-name> [ <template-args> ]
    func (st *state) baseUnresolvedName() AST {
    	var n AST
    	if len(st.str) >= 2 && st.str[:2] == "on" {
    		st.advance(2)
    		n, _ = st.operatorName(true)
    	} else if len(st.str) >= 2 && st.str[:2] == "dn" {
    		st.advance(2)
    		if len(st.str) > 0 && isDigit(st.str[0]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  8. cmd/api-errors.go

    		HTTPStatusCode: http.StatusNotImplemented,
    	},
    	ErrAdminLDAPExpectedLoginName: {
    		Code:           "XMinioLDAPExpectedLoginName",
    		Description:    "Expected LDAP short username but was given full DN.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrAdminInvalidGroupName: {
    		Code:           "XMinioInvalidGroupName",
    		Description:    "The group name is invalid.",
    		HTTPStatusCode: http.StatusBadRequest,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  9. src/crypto/x509/x509.go

    	// RawTBSRevocationList contains just the tbsCertList portion of the ASN.1
    	// DER.
    	RawTBSRevocationList []byte
    	// RawIssuer contains the DER encoded Issuer.
    	RawIssuer []byte
    
    	// Issuer contains the DN of the issuing certificate.
    	Issuer pkix.Name
    	// AuthorityKeyId is used to identify the public key associated with the
    	// issuing certificate. It is populated from the authorityKeyIdentifier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
Back to top