Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,002 for past (0.02 sec)

  1. src/main/resources/fess_message_it.properties

    constraints.Min.message = {item} deve essere maggiore o uguale a {value}.
    constraints.NotNull.message = {item} è obbligatorio.
    constraints.Null.message = {item} deve essere nullo.
    constraints.Past.message = {item} deve essere una data passata.
    constraints.Pattern.message = {item} non corrisponde a "{regexp}".
    constraints.Size.message = La dimensione di {item} deve essere compresa tra {min} e {max} caratteri.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.3K bytes
    - Viewed (0)
  2. docs/nl/docs/features.md

    ### Kort
    
    Dit framework heeft voor alles verstandige **standaardinstellingen**, met overal optionele configuraties. Alle parameters kunnen worden verfijnd zodat het past bij wat je nodig hebt, om zo de API te kunnen definiëren die jij nodig hebt.
    
    Maar standaard werkt alles **“gewoon”**.
    
    ### Validatie
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Sep 03 13:50:38 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb1/netbios/SocketInputStreamTest.java

            // Read in chunks
            byte[] buffer = new byte[10];
    
            // The read will either:
            // 1. Successfully read all 5 bytes
            // 2. Throw IOException if it tries to read past the message
            try {
                int read = sis.read(buffer, 0, 10);
    
                // Should read all 5 available bytes
                assertEquals(5, read);
    
                // Verify correct data
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  4. src/main/resources/fess_message_fr.properties

    constraints.ParametersScriptAssert.message = L'expression de script « {script} » n'est pas vraie.
    constraints.Range.message = {item} doit être compris entre {min} et {max}.
    constraints.SafeHtml.message = {item} contient du contenu HTML dangereux.
    constraints.ScriptAssert.message = L'expression de script « {script} » n'est pas vraie.
    constraints.URL.message = {item} n'est pas une URL valide.
    constraints.Required.message = {item} est requis.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  5. src/main/resources/fess_message_zh_CN.properties

    constraints.Max.message = {item} 必须小于或等于 {value}。
    constraints.Min.message = {item} 必须大于或等于 {value}。
    constraints.NotNull.message = {item} 不能为空。
    constraints.Null.message = {item} 必须为 null。
    constraints.Past.message = {item} 必须是过去的值。
    constraints.Pattern.message = {item} 不匹配 "{regexp}"。
    constraints.Size.message = {item} 的大小必须在 {min} 到 {max} 个字符之间。
    # ----------------------------------------------------------
    # Hibernate Validator
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/net/InternetDomainName.java

      /**
       * Helper method for {@link #validateSyntax(List)}. Validates that one part of a domain name is
       * valid.
       *
       * @param part The domain name part to be validated
       * @param isFinalPart Is this the final (rightmost) domain part?
       * @return Whether the part is valid
       */
      private static boolean validatePart(String part, boolean isFinalPart) {
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/AbstractFutureState.java

           * AGP: https://github.com/google/guava/issues/7769.
           *
           * My impression is that an AtomicReferenceFieldUpdater in a static field is similarly fast to
           * Unsafe on modern JVMs (if perhaps not quite as fast as VarHandle?). However, I'm not sure
           * exactly what we've benchmarked, and we certainly haven't benchmarked as far back as JDK 8.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 33.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/AbstractFutureState.java

       * AbstractFuture: Users may have tests or log configuration that expects that to be the logger
       * used for exceptions from listeners, as it's been in the past.
       */
      static final LazyLogger log = new LazyLogger(AbstractFuture.class);
    
      static final boolean GENERATE_CANCELLATION_CAUSES;
    
      static {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 34.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/hash/Hashing.java

       *
       * <p>This is designed for generating persistent fingerprints of strings. It isn't
       * cryptographically secure, but it produces a high-quality hash with fewer collisions than some
       * alternatives we've used in the past.
       *
       * <p>FarmHash fingerprints are encoded by {@link HashCode#asBytes} in little-endian order. This
       * means {@link HashCode#asLong} is guaranteed to return the same value that
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 29.8K bytes
    - Viewed (0)
  10. guava/src/com/google/common/hash/Hashing.java

       *
       * <p>This is designed for generating persistent fingerprints of strings. It isn't
       * cryptographically secure, but it produces a high-quality hash with fewer collisions than some
       * alternatives we've used in the past.
       *
       * <p>FarmHash fingerprints are encoded by {@link HashCode#asBytes} in little-endian order. This
       * means {@link HashCode#asLong} is guaranteed to return the same value that
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 22:06:57 UTC 2025
    - 31.1K bytes
    - Viewed (0)
Back to top