Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 143 for corretto (0.41 sec)

  1. src/test/java/org/codelibs/fess/job/PurgeLogJobTest.java

            assertTrue(deleteSearchLogCalled[0]);
            assertTrue(deleteJobLogCalled[0]);
            assertTrue(deleteUserInfoCalled[0]);
            assertTrue(updateJobLogStatusCalled[0]);
    
            // Assert correct parameters were passed - verify that time passed is greater than 0
            assertTrue(crawlingInfoDeletedBeforeTime[0] > 0);
            assertEquals(30, searchLogDeletedDays[0]);
            assertEquals(14, jobLogDeletedDays[0]);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ComparisonChainTest.java

              .add("aString", aString)
              .add("anInt", anInt)
              .add("anEnum", anEnum)
              .toString();
        }
      }
    
      /** Validates that the Comparator equivalent we document is correct. */
      @J2ktIncompatible // TODO b/315311435 - J2kt cannot emulate Comparator<C>.<U>thenComparing()
      public void testComparatorEquivalent() {
        Comparator<Foo> comparatorUsingComparisonChain =
            (a, b) ->
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 12 03:05:13 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_it.properties

    labels.group_list_name=Nome
    labels.group_name=Nome
    labels.group_title_details=Gruppo
    labels.related_content_configuration=Contenuto correlato
    labels.related_content_content=Contenuto
    labels.related_content_list_term=Termine di ricerca
    labels.related_content_term=Termine di ricerca
    labels.related_content_title_details=Contenuto correlato
    labels.related_query_configuration=Query correlata
    labels.related_query_list_term=Termine di ricerca
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.4K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_es.properties

    labels.user_given_name=Nombre de pila
    labels.givenName=Nombre (dado)
    labels.user_surname=Apellido
    labels.surame=Apellido
    labels.user_mail=Dirección de correo electrónico
    labels.mail=Dirección de correo electrónico
    labels.user_employeeNumber=Número de empleado
    labels.employeeNumber=Número de empleado
    labels.user_telephoneNumber=Número de teléfono
    labels.telephoneNumber=Número de teléfono
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 45.4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/util/SystemUtilTest.java

            assertEquals("fess.search_engine.http_address", Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS);
        }
    
        public void test_static_method_signature() {
            // Verify method signature is correct
            try {
                java.lang.reflect.Method method = SystemUtil.class.getMethod("getSearchEngineHttpAddress");
    
                // Check return type
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

            Future<?> possiblyIgnoredError = executor.submit(task);
          }
          awaitUnchecked(barrier);
          assertThat(future.isDone()).isTrue();
          // inspect state and ensure it is correct!
          // asserts that all get calling threads received the same value
          Object result = Iterables.getOnlyElement(finalResults);
          if (result == CancellationException.class) {
            assertTrue(future.isCancelled());
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 46.8K bytes
    - Viewed (0)
  7. docs/contribute/concurrency.md

    You're allowed to take the Http2Connection lock while holding the Http2Writer lock. But not vice-versa. Because taking the Http2Writer lock can block.
    
    This is necessary for bookkeeping when creating new streams. Correct framing requires that stream IDs are sequential on the socket, so we need to bundle assigning the ID with sending the `SYN_STREAM` frame.
    
    ## Connection Pool
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/google/AbstractMultisetSetCountTester.java

     * MultisetSetCountConditionallyTester}. It is used by those testers to test calls to the
     * unconditional {@code setCount()} method and calls to the conditional {@code setCount()} method
     * when the expected present count is correct.
     *
     * @author Chris Povirk
     */
    @GwtCompatible
    @Ignore("test runners must not instantiate and run this directly, only via suites we build")
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 13K bytes
    - Viewed (0)
  9. guava/src/com/google/common/primitives/UnsignedLong.java

        // value. But in the specific case where the bottom two bits of the original number are 01, we
        // want to replace that with 1 in the shifted value for correct rounding.
        return (double) ((value >>> 1) | (value & 1)) * 2.0;
      }
    
      /** Returns the value of this {@code UnsignedLong} as a {@link BigInteger}. */
      public BigInteger bigIntegerValue() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jun 04 13:03:16 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java

                    }
                }
            }
        }
    
        public void test_pathValues() throws Exception {
            // Test specific path values to ensure correct JSP paths
            assertEquals("/admin/accesstoken/admin_accesstoken.jsp", FessHtmlPath.path_AdminAccesstoken_AdminAccesstokenJsp.getRoutingPath());
            assertEquals("/admin/accesstoken/admin_accesstoken_details.jsp",
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
Back to top