Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for user_password (0.17 sec)

  1. docs/distributed/samples/bootstrap-complete.ldif

    objectClass: inetOrgPerson
    cn: Alice Smith
    sn: Smith
    uid: alice1
    mail: ******@****.***
    userPassword: {SSHA}Yeh2/IV/q/HjG2yzN3YdE9CAF3EJFCLu
    
    dn: uid=bobfisher,ou=people,ou=hwengg,dc=min,dc=io
    objectClass: inetOrgPerson
    cn: Robert Fisher
    sn: Fisher
    uid: bobfisher
    mail: ******@****.***
    userPassword: {SSHA}LktfbhK5oXSdDWCNzauJ9JA+Poxinl3y
    
    dn: uid=cody3,ou=people,ou=hwengg,dc=min,dc=io
    objectClass: inetOrgPerson
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 12 15:59:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                final List<SearchResult> result) {
            final List<ModificationItem> modifyList = new ArrayList<>();
            if (user.getOriginalPassword() != null) {
                modifyReplaceEntry(modifyList, "userPassword", user.getOriginalPassword());
            }
    
            final String attrSurname = fessConfig.getLdapAttrSurname();
            OptionalUtil.ofNullable(user.getSurname()).filter(StringUtil::isNotBlank)
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // a URL. You may use the path to pass an arbitrary string to the
      // webhook, for example, a cluster identifier.
      //
      // Attempting to use a user or basic auth e.g. "user:password@" is not
      // allowed. Fragments ("#...") and query parameters ("?...") are not
      // allowed, either.
      //
      // +optional
      optional string url = 3;
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        // IPv6 colons don't interfere with port numbers or passwords.
        assertThat(parse("http://[::1]:8080/").port).isEqualTo(8080)
        assertThat(parse("http://user:password@[::1]/").password).isEqualTo("password")
        assertThat(parse("http://user:password@[::1]:8080/").host).isEqualTo("::1")
    
        // Permit the contents of IPv6 addresses to be percent-encoded...
        assertThat(parse("http://[%3A%3A%31]/").host).isEqualTo("::1")
    
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      // a URL. You may use the path to pass an arbitrary string to the
      // webhook, for example, a cluster identifier.
      //
      // Attempting to use a user or basic auth e.g. "user:password@" is not
      // allowed. Fragments ("#...") and query parameters ("?...") are not
      // allowed, either.
      //
      // +optional
      optional string url = 3;
    
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  6. docs/em/docs/tutorial/sql-databases.md

    👉 🖼, 👥 "🔗" 🗄 💽 (📂 📁 ⏮️ 🗄 💽).
    
    📁 🔜 🔎 🎏 📁 📁 `sql_app.db`.
    
    👈 ⚫️❔ 🏁 🍕 `./sql_app.db`.
    
    🚥 👆 ⚙️ **✳** 💽 ↩️, 👆 🔜 ✔️ ✍ ⏸:
    
    ```Python
    SQLALCHEMY_DATABASE_URL = "postgresql://user:password@postgresserver/db"
    ```
    
    ...&amp; 🛠️ ⚫️ ⏮️ 👆 💽 📊 &amp; 🎓 (📊 ✳, ✳ ⚖️ 🙆 🎏).
    
    /// tip
    
    👉 👑 ⏸ 👈 👆 🔜 ✔️ 🔀 🚥 👆 💚 ⚙️ 🎏 💽.
    
    ///
    
    ### ✍ 🇸🇲 `engine`
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 25K bytes
    - Viewed (0)
  7. docs/zh/docs/tutorial/sql-databases.md

    在这个例子中,我们正在“连接”到一个 SQLite 数据库(用 SQLite 数据库打开一个文件)。
    
    该文件将位于文件中的同一目录中`sql_app.db`。
    
    这就是为什么最后一部分是`./sql_app.db`.
    
    如果您使用的是**PostgreSQL**数据库,则只需取消注释该行:
    
    ```Python
    SQLALCHEMY_DATABASE_URL = "postgresql://user:password@postgresserver/db"
    ```
    
    ...并根据您的数据库数据和相关凭据(也适用于 MySQL、MariaDB 或任何其他)对其进行调整。
    
    /// tip
    
    如果您想使用不同的数据库,这是就是您必须修改的地方。
    
    ///
    
    ### 创建 SQLAlchemy 引擎
    
    第一步,创建一个 SQLAlchemy的“引擎”。
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg net/url, func ParseRequestURI(string) (*URL, error)
    pkg net/url, func QueryEscape(string) string
    pkg net/url, func QueryUnescape(string) (string, error)
    pkg net/url, func User(string) *Userinfo
    pkg net/url, func UserPassword(string, string) *Userinfo
    pkg net/url, method (*Error) Error() string
    pkg net/url, method (*URL) IsAbs() bool
    pkg net/url, method (*URL) Parse(string) (*URL, error)
    pkg net/url, method (*URL) Query() Values
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
Back to top