Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 383 for passWord (0.06 sec)

  1. src/main/java/jcifs/smb/DosError.java

         */
        String[] DOS_ERROR_MESSAGES = { "The operation completed successfully.", "Incorrect function.", "Incorrect function.",
                "The system cannot find the file specified.", "Bad password.", "The system cannot find the path specified.", "reserved",
                "The client does not have the necessary access rights to perform the requested function.", "Access is denied.",
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/DosError.java

         */
        String[] DOS_ERROR_MESSAGES = { "The operation completed successfully.", "Incorrect function.", "Incorrect function.",
                "The system cannot find the file specified.", "Bad password.", "The system cannot find the path specified.", "reserved",
                "The client does not have the necessary access rights to perform the requested function.", "Access is denied.",
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  3. docs/ko/docs/tutorial/request-forms.md

    `Body` 또는 `Query`와 동일한 방식으로 폼 매개변수를 만듭니다:
    
    {* ../../docs_src/request_forms/tutorial001_an_py39.py hl[9] *}
    
    예를 들어, OAuth2 사양을 사용할 수 있는 방법 중 하나("패스워드 플로우"라고 함)로 `username`과 `password`를 폼 필드로 보내야 합니다.
    
    <abbr title="specification">사양</abbr>에서는 필드 이름이 `username` 및 `password`로 정확하게 명명되어야 하고, JSON이 아닌 폼 필드로 전송해야 합니다.
    
    `Form`을 사용하면 유효성 검사, 예제, 별칭(예: `username` 대신 `user-name`) 등을 포함하여 `Body`(및 `Query`, `Path`, `Cookie`)와 동일한 구성을 선언할 수 있습니다.
    
    /// info | 정보
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 09 12:42:55 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. .github/workflows/tests.yml

          with:
            path: ~/go/pkg/mod
            key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('tests/go.mod') }}
    
        - name: Tests
          run: GITHUB_ACTION=true GORM_DIALECT=postgres GORM_DSN="user=gorm password=gorm dbname=gorm host=localhost port=9920 sslmode=disable TimeZone=Asia/Shanghai" ./tests/tests_all.sh
    
      sqlserver:
        strategy:
          matrix:
            go: ['1.23', '1.24']
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Mon Jul 21 02:46:58 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/orig/view/login/index.jsp

    						</div>
    					</div>
    					<div class="input-group mb-3">
    						<c:set var="ph_password">
    							<la:message key="labels.login.placeholder_password" />
    						</c:set>
    						<la:password property="password" class="form-control"
    							placeholder="${ph_password}" />
    						<div class="input-group-append">
    							<span class="input-group-text">
    								<em class="fa fa-lock fa-fw">
    							</span>
    						</div>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 3K bytes
    - Viewed (0)
  6. docs/es/docs/tutorial/request-form-models.md

    Si un cliente intenta enviar datos extra, recibirá un response de **error**.
    
    Por ejemplo, si el cliente intenta enviar los campos de formulario:
    
    * `username`: `Rick`
    * `password`: `Portal Gun`
    * `extra`: `Mr. Poopybutthole`
    
    Recibirá un response de error indicando que el campo `extra` no está permitido:
    
    ```json
    {
        "detail": [
            {
                "type": "extra_forbidden",
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/orig/view/login/newpassword.jsp

    					<div class="input-group mb-3">
    						<c:set var="ph_new_password">
    							<la:message key="labels.login.placeholder_new_password" />
    						</c:set>
    						<la:password property="password" class="form-control"
    							placeholder="${ph_new_password}" />
    						<div class="input-group-append">
    							<span class="input-group-text">
    								<em class="fa fa-lock fa-fw">
    							</span>
    						</div>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/login/index.jsp

    						</div>
    					</div>
    					<div class="input-group mb-3">
    						<c:set var="ph_password">
    							<la:message key="labels.login.placeholder_password" />
    						</c:set>
    						<la:password property="password" class="form-control"
    							placeholder="${ph_password}" />
    						<div class="input-group-append">
    							<span class="input-group-text">
    								<em class="fa fa-lock fa-fw">
    							</span>
    						</div>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 3K bytes
    - Viewed (1)
  9. src/main/java/jcifs/audit/SecurityAuditLogger.java

                if (!lowerData.contains("password") && !lowerData.contains("secret") && !lowerData.contains("token")
                        && !lowerData.contains("key") && !lowerData.contains("credential") && !lowerData.contains("auth")) {
                    return data; // No sensitive patterns detected, skip regex
                }
            }
    
            // Mask passwords and secrets using cached pattern
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 26.6K bytes
    - Viewed (0)
  10. src/main/java/jcifs/internal/smb1/com/ServerData.java

         */
        public int serverTimeZone;
        /**
         * Length of the encryption key.
         */
        public int encryptionKeyLength;
        /**
         * Encryption key for password encryption.
         */
        public byte[] encryptionKey;
        /**
         * Server's globally unique identifier.
         */
        public byte[] guid;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.9K bytes
    - Viewed (0)
Back to top