Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 278 for tracks (0.04 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/reqheader/EditForm.java

         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * The username of the user who last updated this request header configuration.
         * Used for audit trail purposes to track who made changes.
         */
        @Size(max = 1000)
        public String updatedBy;
    
        /**
         * The timestamp when this request header configuration was last updated.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  2. docs/en/docs/css/custom.css

      direction: ltr;
      display: inline-block;
    }
    
    .illustration {
      margin-top: 2em;
      margin-bottom: 2em;
    }
    
    /* Screenshots */
    /*
    Simulate a browser window frame.
    Inspired by Termynal's CSS tricks with modifications
    */
    
    .screenshot {
      display: block;
      background-color: #d3e0de;
      border-radius: 4px;
      padding: 45px 5px 5px;
      position: relative;
      -webkit-box-sizing: border-box;
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Wed Jul 17 02:12:29 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. .github/ISSUE_TEMPLATE/FEATURE.yml

    name: Feature request
    description: File a proposal for new feature, improvement
    labels: ["enhancement"]
    
    body:
      - type: markdown
        attributes:
          value: |
            Thanks for taking the time to fill out this new feature, improvement proposal.
    
      - type: textarea
        id: message
        attributes:
          label: New feature, improvement proposal
        validations:
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jun 06 14:30:05 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelProblem.java

         * information that is available at the point the problem occurs and as such merely serves as best effort
         * to provide information to the user to track the problem back to its origin.
         *
         * @return The identifier of the model from which the problem originated or an empty string if unknown, never
         *         {@code null}.
         */
        @Nonnull
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Aug 07 14:31:13 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  5. docs/es/docs/advanced/security/http-basic-auth.md

        # Return some error
        ...
    ```
    
    Pero al usar `secrets.compare_digest()` será seguro contra un tipo de ataques llamados "timing attacks".
    
    ### Timing Attacks
    
    ¿Pero qué es un "timing attack"?
    
    Imaginemos que algunos atacantes están tratando de adivinar el nombre de usuario y la contraseña.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. .github/DISCUSSION_TEMPLATE/translations.yml

    labels: [lang-all]
    body:
      - type: markdown
        attributes:
          value: |
            Thanks for your interest in helping translate the FastAPI docs! 🌍
    
            Please follow these instructions carefully to propose a new language translation. 🙏
    
            This structured process helps ensure translations can be properly maintained long-term.
      - type: checkboxes
        id: checks
        attributes:
          label: Initial Checks
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sat Jul 26 11:35:42 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb2/Smb2EchoResponseTest.java

        class ResponseStateTests {
    
            @Test
            @DisplayName("Should track received state")
            void testReceivedState() {
                assertFalse(echoResponse.isReceived());
    
                echoResponse.received();
    
                assertTrue(echoResponse.isReceived());
            }
    
            @Test
            @DisplayName("Should track error state")
            void testErrorState() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/base/login/SpnegoCredential.java

        public String getUserId() {
            return username;
        }
    
        /**
         * Returns a string representation of this credential.
         *
         * @return A string representation containing the username in braces
         */
        @Override
        public String toString() {
            return "{" + username + "}";
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.25.md

    - Fix a bug in cronjob controller where already created jobs may be missing from the status. ([#120649]...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

        private long authenticationTTL = 3600000L; // 1 hour default
        /** Timestamp when the authentication was created */
        private long authenticationTimestamp = System.currentTimeMillis();
        /** Flag to track if this authenticator has been closed */
        private volatile boolean closed = false;
    
        /**
         * Construct anonymous credentials
         */
        public NtlmPasswordAuthenticator() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 30.3K bytes
    - Viewed (0)
Back to top