Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 383 for passWord (0.04 sec)

  1. docs/ru/docs/tutorial/request-form-models.md

    Если клиент попробует отправить дополнительные данные, то в ответ он получит **ошибку**.
    
    Например, если клиент попытается отправить поля формы:
    
    * `username`: `Rick`
    * `password`: `Portal Gun`
    * `extra`: `Mr. Poopybutthole`
    
    То в ответ он получит **ошибку**, сообщающую ему, что поле `extra` не разрешено:
    
    ```json
    {
        "detail": [
            {
                "type": "extra_forbidden",
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri May 30 13:17:36 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlTest.kt

      }
    
      @Test
      fun decodePassword() {
        assertThat(parse("http://user:password@host/").password).isEqualTo("password")
        assertThat(parse("http://user:@host/").password).isEqualTo("")
        assertThat(parse("http://user:%F0%9F%8D%A9@host/").password)
          .isEqualTo("\uD83C\uDF69")
      }
    
      @Test
      fun decodeSlashCharacterInDecodedPathSegment() {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Aug 04 07:38:48 UTC 2025
    - 69.9K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/user/admin_user_edit.jsp

                                        <label for="password" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.user_password"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="password"/>
                                            <la:password styleId="password" property="password" styleClass="form-control"/>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Fri Feb 14 12:15:45 UTC 2020
    - 31.4K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/security/index.md

    But first, let's check some small concepts.
    
    ## In a hurry? { #in-a-hurry }
    
    If you don't care about any of these terms and you just need to add security with authentication based on username and password *right now*, skip to the next chapters.
    
    ## OAuth2 { #oauth2 }
    
    OAuth2 is a specification that defines several ways to handle authentication and authorization.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/ldap/LdapManager.java

            });
        }
    
        /**
         * Changes the password for a user in the LDAP directory.
         *
         * @param username the username of the user
         * @param password the new password
         * @return true if the password was changed successfully, false otherwise
         */
        public boolean changePassword(final String username, final String password) {
            if (!fessConfig.isLdapAdminEnabled(username)) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 82K bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/authenticator/JavaNetAuthenticator.kt

            val credentialHeader = if (proxyAuthorization) "Proxy-Authorization" else "Authorization"
            val credential =
              Credentials.basic(
                auth.userName,
                String(auth.password),
                challenge.charset,
              )
            return request
              .newBuilder()
              .header(credentialHeader, credential)
              .build()
          }
        }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  7. src/packaging/common/scripts/preinst

                adduser --quiet \
                        --system \
                        --no-create-home \
                        --ingroup "$FESS_GROUP" \
                        --disabled-password \
                        --shell /bin/false \
                        --home "$FESS_USER_HOME"  \
                        "$FESS_USER"
                echo " OK"
            fi
        ;;
        abort-deconfigure|abort-upgrade|abort-remove)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 01 09:48:15 UTC 2016
    - 2.3K bytes
    - Viewed (0)
  8. docs/de/docs/advanced/security/oauth2-scopes.md

    ## Über Integrationen von Drittanbietern
    
    In diesem Beispiel verwenden wir den OAuth2-Flow „Password“.
    
    Das ist angemessen, wenn wir uns bei unserer eigenen Anwendung anmelden, wahrscheinlich mit unserem eigenen Frontend.
    
    Weil wir darauf vertrauen können, dass es den `username` und das `password` erhält, welche wir kontrollieren.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/UrlComponentEncodingTester.kt

        },
    
        PASSWORD {
          override fun urlString(value: String): String = "http://:$******@****.***/"
    
          override fun encodedValue(url: HttpUrl): String = url.encodedPassword
    
          override operator fun set(
            builder: HttpUrl.Builder,
            value: String,
          ) {
            builder.password(value)
          }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  10. okhttp/src/jvmTest/kotlin/okhttp3/KotlinDeprecationErrorTest.kt

        val encodedUsername: String = httpUrl.encodedUsername()
        val username: String = httpUrl.username()
        val encodedPassword: String = httpUrl.encodedPassword()
        val password: String = httpUrl.password()
        val host: String = httpUrl.host()
        val port: Int = httpUrl.port()
        val pathSize: Int = httpUrl.pathSize()
        val encodedPath: String = httpUrl.encodedPath()
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top