Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for DN (0.05 sec)

  1. internal/config/identity/ldap/help.go

    		config.HelpKV{
    			Key:         LookupBindDN,
    			Description: `DN for LDAP read-only service account used to perform DN and group lookups` + defaultHelpPostfix(LookupBindDN),
    			Optional:    true,
    			Type:        "string",
    			Sensitive:   true,
    		},
    		config.HelpKV{
    			Key:         LookupBindPassword,
    			Description: `Password for LDAP read-only service account used to perform DN and group lookups` + defaultHelpPostfix(LookupBindPassword),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. internal/config/identity/ldap/legacy.go

    // V33.
    type LegacyConfig struct {
    	Enabled bool `json:"enabled"`
    
    	// E.g. "ldap.minio.io:636"
    	ServerAddr string `json:"serverAddr"`
    
    	// User DN search parameters
    	UserDNSearchBaseDistName  string   `json:"userDNSearchBaseDN"`
    	UserDNSearchBaseDistNames []string `json:"-"` // Generated field
    	UserDNSearchFilter        string   `json:"userDNSearchFilter"`
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Oct 08 05:12:36 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  3. build-logic/performance-testing/src/main/kotlin/gradlebuild/performance/tasks/BuildCommitDistribution.kt

    /*
    The error output looks like this:
    
        Downloading https://services.gradle.org/distributions-snapshots/gradle-7.5-20220202183149+0000-bin.zip
        Exception in thread "main" java.io.FileNotFoundException: https://downloads.gradle-dn.com/distributions-snapshots/gradle-7.5-20220202183149+0000-bin.zip
     */
    private
    val oldWrapperMissingErrorRegex = """\Qjava.io.FileNotFoundException:\E.*/distributions-snapshots/gradle-([\d.]+)""".toRegex()
    
    
    @CacheableTask
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 08:07:16 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. internal/config/identity/ldap/config.go

    		if err != nil {
    			return l, err
    		}
    	}
    
    	// Lookup bind user configuration
    	l.LDAP.LookupBindDN = getCfgVal(LookupBindDN)
    	l.LDAP.LookupBindPassword = getCfgVal(LookupBindPassword)
    
    	// User DN search configuration
    	l.LDAP.UserDNSearchFilter = getCfgVal(UserDNSearchFilter)
    	l.LDAP.UserDNSearchBaseDistName = getCfgVal(UserDNSearchBaseDN)
    	l.LDAP.UserDNAttributes = getCfgVal(UserDNAttributes)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. src/crypto/tls/testdata/Server-TLSv11-RSA-RC4

    00000030  7c b9 f1 9d be 49 7c 09  6a b0 25 49 9c 06 2a c3  ||....I|.j.%I..*.|
    00000040  d5 0a ae cc cc 08 31 5d  14 82 06 a7 57 fc 66 9c  |......1]....W.f.|
    00000050  90 b7 be aa 15 46 2b aa  ae fc 3a ce 3d 64 4e 80  |.....F+...:.=dN.|
    00000060  90 3f 77 c6 60 cd 6b dc  69 c1 92 a9 1e 8e 30 6a  |.?w.`.k.i.....0j|
    00000070  34 a3 db 1a f5 a3 f9 ac  1c 07 4f be 38 d1 a5 61  |4.........O.8..a|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Server-TLSv13-Ed25519

    00000090  08 06 04 01 05 01 06 01  00 2b 00 03 02 03 04 00  |.........+......|
    000000a0  2d 00 02 01 01 00 33 00  26 00 24 00 1d 00 20 d8  |-.....3.&.$... .|
    000000b0  dc 54 00 21 d1 f5 6e 1b  fc a4 44 4e eb 97 4d 0f  |.T.!..n...DN..M.|
    000000c0  4a 5c ab 4c 27 72 23 69  72 7e 37 e8 bf 69 15     |J\.L'r#ir~7..i.|
    >>> Flow 2 (server to client)
    00000000  16 03 03 00 7a 02 00 00  76 03 03 00 00 00 00 00  |....z...v.......|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. src/crypto/x509/pkix/pkix.go

    type Extension struct {
    	Id       asn1.ObjectIdentifier
    	Critical bool `asn1:"optional"`
    	Value    []byte
    }
    
    // Name represents an X.509 distinguished name. This only includes the common
    // elements of a DN. Note that Name is only an approximation of the X.509
    // structure. If an accurate representation is needed, asn1.Unmarshal the raw
    // subject or issuer as an [RDNSequence].
    type Name struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  8. docs/tls/README.md

    Create a file called `cert.cnf` with the content below. This file contains all of the information necessary to generate a certificate using `certtool.exe`:
    
    ```
    # X.509 Certificate options
    #
    # DN options
    
    # The organization of the subject.
    organization = "Example Inc."
    
    # The organizational unit of the subject.
    #unit = "sleeping dept."
    
    # The state of the certificate owner.
    state = "Example"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv12-SCT

    00000460  70 d5 72 87 2f 58 20 da  29 e0 f8 e8 7c 8d e5 c7  |p.r./X .)...|...|
    00000470  bf da 3c 10 f8 b0 3e 38  7b 06 0b 8e 8f d7 40 b6  |..<...>8{.....@.|
    00000480  47 9f 1c 64 6e 80 ab 9d  51 92 8c 60 a2 88 c4 43  |G..dn...Q..`...C|
    00000490  7d dc 29 64 45 83 a7 9c  2a 39 e9 bb 2a d9 f5 96  |}.)dE...*9..*...|
    000004a0  4c fb fd 0d cc 0f 9b 48  f5 ee af 8f 7a 1c 39 3e  |L......H....z.9>|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/doc.go

    	NOOP                    <=>      nop
    
    # Register mapping rules
    
    1. All basic register names are written as Rn.
    
    2. Go uses ZR as the zero register and RSP as the stack pointer.
    
    3. Bn, Hn, Dn, Sn and Qn instructions are written as Fn in floating-point instructions and as Vn
    in SIMD instructions.
    
    # Argument mapping rules
    
    1. The operands appear in left-to-right assignment order.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top