Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 224 for modtime (0.08 sec)

  1. src/main/resources/fess_message_it.properties

    constraints.Mod10Check.message = Il checksum Modulo 10 di {value} non è corretto.
    constraints.Mod11Check.message = Il checksum Modulo 11 di {value} non è corretto.
    constraints.ModCheck.message = Il checksum {modType} di {value} non è corretto.
    constraints.NotBlank.message = {item} non può essere vuoto.
    constraints.NotEmpty.message = {item} non può essere vuoto.
    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. src/main/resources/fess_message_zh_TW.properties

    constraints.LuhnCheck.message = {value} 的 Luhn Modulo 11 檢查碼不正確。
    constraints.Mod10Check.message = {value} 的 Modulo 10 檢查碼不正確。
    constraints.Mod11Check.message = {value} 的 Modulo 11 檢查碼不正確。
    constraints.ModCheck.message = {value} 的 {modType} 檢查碼不正確。
    constraints.NotBlank.message = {item} 不能為空。
    constraints.NotEmpty.message = {item} 不能為空。
    constraints.ParametersScriptAssert.message = 腳本表達式 "{script}" 不為 true。
    constraints.Range.message = {item} 必須在 {min} 到 {max} 之間。
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

         * @param delay the delay between the termination of one execution and the commencement of the
         *     next
         * @param unit the time unit of the initialDelay and delay parameters
         */
        @SuppressWarnings("GoodTime") // should accept a java.time.Duration
        public static Scheduler newFixedDelaySchedule(long initialDelay, long delay, TimeUnit unit) {
          checkNotNull(unit);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 27.7K bytes
    - Viewed (0)
  4. src/main/resources/fess_message_fr.properties

    constraints.Mod10Check.message = La somme de contrôle Modulo 10 de {value} est incorrecte.
    constraints.Mod11Check.message = La somme de contrôle Modulo 11 de {value} est incorrecte.
    constraints.ModCheck.message = La somme de contrôle {modType} de {value} est incorrecte.
    constraints.NotBlank.message = {item} est requis.
    constraints.NotEmpty.message = {item} est requis.
    constraints.ParametersScriptAssert.message = L'expression de script « {script} » n'est pas vraie.
    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.LuhnCheck.message = {value} 的 Luhn Modulo 11 校验和不正确。
    constraints.Mod10Check.message = {value} 的 Modulo 10 校验和不正确。
    constraints.Mod11Check.message = {value} 的 Modulo 11 校验和不正确。
    constraints.ModCheck.message = {value} 的 {modType} 校验和不正确。
    constraints.NotBlank.message = {item} 不能为空。
    constraints.NotEmpty.message = {item} 不能为空。
    constraints.ParametersScriptAssert.message = 脚本表达式 "{script}" 不为 true。
    constraints.Range.message = {item} 必须在 {min} 到 {max} 之间。
    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. src/main/resources/fess_message.properties

    constraints.Mod10Check.message = The Modulo 10 checksum of {value} is incorrect.
    constraints.Mod11Check.message = The Modulo 11 checksum of {value} is incorrect.
    constraints.ModCheck.message = The {modType} checksum of {value} is incorrect.
    constraints.NotBlank.message = {item} is required.
    constraints.NotEmpty.message = {item} is required.
    constraints.ParametersScriptAssert.message = The script expression "{script}" is not true.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  7. src/main/resources/fess_message_en.properties

    constraints.Mod10Check.message = The Modulo 10 checksum of {value} is incorrect.
    constraints.Mod11Check.message = The Modulo 11 checksum of {value} is incorrect.
    constraints.ModCheck.message = The {modType} checksum of {value} is incorrect.
    constraints.NotBlank.message = {item} is required.
    constraints.NotEmpty.message = {item} is required.
    constraints.ParametersScriptAssert.message = The script expression "{script}" is not true.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/Futures.java

       * @throws RejectedExecutionException if the task cannot be scheduled for execution
       * @since 23.0
       */
      @J2ktIncompatible
      @GwtIncompatible // java.util.concurrent.ScheduledExecutorService
      @SuppressWarnings("GoodTime") // should accept a java.time.Duration
      // TODO(cpovirk): Return ListenableScheduledFuture?
      public static <O extends @Nullable Object> ListenableFuture<O> scheduleAsync(
          AsyncCallable<O> callable,
          long delay,
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 64.3K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/Smb2SigningDigestTest.java

                        }
                    });
                }
    
                startLatch.countDown();
                boolean completed = endLatch.await(10, TimeUnit.SECONDS);
                long endTime = System.currentTimeMillis();
                executor.shutdown();
    
                assertTrue(completed, "All verify operations should complete");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 43.7K bytes
    - Viewed (0)
  10. src/main/resources/fess_message_es.properties

    constraints.Mod10Check.message = La suma de comprobación Módulo 10 de {value} es incorrecta.
    constraints.Mod11Check.message = La suma de comprobación Módulo 11 de {value} es incorrecta.
    constraints.ModCheck.message = La suma de comprobación {modType} de {value} es incorrecta.
    constraints.NotBlank.message = {item} no puede estar en blanco.
    constraints.NotEmpty.message = {item} no puede estar vacío.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.7K bytes
    - Viewed (0)
Back to top