Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 73 for pasti (0.02 sec)

  1. src/main/resources/fess_message_pl.properties

    constraints.Min.message = {item} musi być większe lub równe {value}.
    constraints.NotNull.message = {item} jest niewypełnione.
    constraints.Null.message = {item} musi być null.
    constraints.Past.message = {item} musi być wartością przeszłą.
    constraints.Pattern.message = {item} nie pasuje do "{regexp}".
    constraints.Size.message = Rozmiar {item} musi być w zakresie od {min} do {max} znaków.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  2. src/main/resources/fess_label.properties

    labels.advance_search_timestamp=Last update
    labels.advance_search_timestamp_default=Anytime
    labels.advance_search_timestamp_pastday=Past 24 hours
    labels.advance_search_timestamp_pastweek=Past week
    labels.advance_search_timestamp_pastmonth=Past month
    labels.advance_search_timestamp_pastyear=Past year
    labels.searchlog_configuration=Search Log
    labels.searchlog_title=Search Log
    labels.searchlog_log_type=Log Type
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 28 08:40:50 UTC 2025
    - 40.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Throwables.java

       * exception's creation.
       *
       * @since 19.0
       * @deprecated This method is equivalent to {@link Throwable#getStackTrace()} on JDK versions past
       *     JDK 8 and on all Android versions. Use {@link Throwable#getStackTrace()} directly, or where
       *     possible use the {@code java.lang.StackWalker.walk} method introduced in JDK 9.
       */
      @Deprecated
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  4. src/main/resources/fess_message_es.properties

    constraints.Min.message = {item} debe ser mayor o igual que {value}.
    constraints.NotNull.message = {item} es obligatorio.
    constraints.Null.message = {item} debe ser nulo.
    constraints.Past.message = {item} debe ser una fecha pasada.
    constraints.Pattern.message = {item} no coincide con "{regexp}".
    constraints.Size.message = El tamaño de {item} debe estar entre {min} y {max} caracteres.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  5. src/main/resources/fess_message_pt_BR.properties

    constraints.Min.message = {item} deve ser maior ou igual a {value}.
    constraints.NotNull.message = {item} é obrigatório.
    constraints.Null.message = {item} deve ser nulo.
    constraints.Past.message = {item} deve ser uma data passada.
    constraints.Pattern.message = {item} não corresponde a "{regexp}".
    constraints.Size.message = O tamanho de {item} deve estar entre {min} e {max} caracteres.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabase.kt

          var low = 0
          var high = size
          var match: String? = null
          while (low < high) {
            var mid = (low + high) / 2
            // Search for a '\n' that marks the start of a value. Don't go back past the start of the
            // array.
            while (mid > -1 && this[mid] != '\n'.code.toByte()) {
              mid--
            }
            mid++
    
            // Now look for the ending '\n'.
            var end = 1
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 28 07:33:49 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  7. mockwebserver/README.md

    then verify that requests were made as expected.
    
    Because it exercises your full HTTP stack, you can be confident that you're
    testing everything. You can even copy & paste HTTP responses from your real web
    server to create representative test cases. Or test that your code survives in
    awkward-to-reproduce situations like 500 errors or slow-loading responses.
    
    
    ### Example
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jul 19 13:40:52 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  8. okhttp/src/commonJvmAndroid/kotlin/okhttp3/CacheControl.kt

       */
      @get:JvmName("noCache") val noCache: Boolean,
      /** If true, this response should not be cached. */
      @get:JvmName("noStore") val noStore: Boolean,
      /** The duration past the response's served date that it can be served without validation. */
      @get:JvmName("maxAgeSeconds") val maxAgeSeconds: Int,
      /**
       * The "s-maxage" directive is the max age for shared caches. Not to be confused with "max-age"
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. android/guava-testlib/src/com/google/common/collect/testing/google/SortedMultisetTestSuiteBuilder.java

                    // we dangerously assume E is a string
                    List<E> extremeValues = (List<E>) getExtremeValues();
                    @SuppressWarnings("unchecked")
                    // map generators must past entry objects
                    List<E> normalValues = (List<E>) asList(entries);
    
                    // prepare extreme values to be filtered out of view
                    sort(extremeValues, comparator);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 11.9K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/mylasta/action/FessMessagesTest.java

            assertEquals("{constraints.NotNull.message}", FessMessages.CONSTRAINTS_NotNull_MESSAGE);
            assertEquals("{constraints.Null.message}", FessMessages.CONSTRAINTS_Null_MESSAGE);
            assertEquals("{constraints.Past.message}", FessMessages.CONSTRAINTS_Past_MESSAGE);
            assertEquals("{constraints.Pattern.message}", FessMessages.CONSTRAINTS_Pattern_MESSAGE);
            assertEquals("{constraints.Size.message}", FessMessages.CONSTRAINTS_Size_MESSAGE);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 28.2K bytes
    - Viewed (0)
Back to top