Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 313 for greeting (0.04 sec)

  1. guava-tests/test/com/google/common/graph/ImmutableValueGraphTest.java

        assertThat(emptyGraph.allowsSelfLoops()).isTrue();
        assertThat(emptyGraph.nodeOrder()).isEqualTo(ElementOrder.<String>natural());
      }
    
      /**
       * Tests that the ImmutableValueGraph.Builder doesn't change when the creating ValueGraphBuilder
       * changes.
       */
      @Test
      @SuppressWarnings("CheckReturnValue")
      public void immutableValueGraphBuilder_copiesGraphBuilder() {
        ValueGraphBuilder<String, Object> graphBuilder =
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java

            // Load data first
            protwordsFile.reload(null);
    
            // Test getting non-existing item
            OptionalEntity<ProtwordsItem> item = protwordsFile.get(999);
            assertFalse(item.isPresent());
        }
    
        public void test_get_withUnloadedData() {
            // Test getting item when data is not loaded yet
            OptionalEntity<ProtwordsItem> item = protwordsFile.get(1);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/util/OptionalUtilTest.java

        public void test_ofNullable_performanceAndMemory() {
            // Test creating many OptionalEntity instances
            for (int i = 0; i < 1000; i++) {
                OptionalEntity<Integer> opt = OptionalUtil.ofNullable(i);
                assertTrue(opt.isPresent());
                assertEquals(Integer.valueOf(i), opt.get());
            }
    
            // Test creating many empty OptionalEntity instances
            for (int i = 0; i < 1000; i++) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 13K bytes
    - Viewed (0)
  4. docs/contribute/concurrency.md

    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)
  5. src/test/java/org/codelibs/fess/exception/LdapConfigurationExceptionTest.java

            assertTrue(toStringResult.contains(LdapConfigurationException.class.getName()));
            assertTrue(toStringResult.contains(message));
        }
    
        public void test_multipleInstances() {
            // Test creating multiple instances with different messages
            LdapConfigurationException exception1 = new LdapConfigurationException("Error 1");
            LdapConfigurationException exception2 = new LdapConfigurationException("Error 2");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  6. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Route.kt

     */
    package okhttp3
    
    import java.net.InetSocketAddress
    import java.net.Proxy
    import okhttp3.internal.toCanonicalHost
    
    /**
     * The concrete route used by a connection to reach an abstract origin server. When creating a
     * connection the client has many options:
     *
     *  * **HTTP proxy:** a proxy server may be explicitly configured for the client. Otherwise, the
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java

         */
        public String endTime;
    
        /**
         * Initializes the form with default null values.
         * This method resets all fields to their default state for creating a new entry.
         */
        public void initialize() {
            id = null;
            jobName = null;
            jobStatus = null;
            target = null;
            scriptType = null;
            scriptData = null;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/HashingOutputStream.java

       */
      // TODO(user): Evaluate whether it makes sense to always piggyback the computation of a
      // HashCode on an existing OutputStream, compared to creating a separate OutputStream that could
      // be (optionally) be combined with another if needed (with something like
      // MultiplexingOutputStream).
      public HashingOutputStream(HashFunction hashFunction, OutputStream out) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/ThreadFactoryBuilderTest.java

        assertSame(defaultThread.getUncaughtExceptionHandler(), thread.getUncaughtExceptionHandler());
    
        assertFalse(completed);
        thread.start();
        thread.join();
        assertTrue(completed);
    
        // Creating a new thread from the same ThreadFactory will have the same
        // pool ID but a thread ID of 2.
        Thread thread2 = threadFactory.newThread(monitoredRunnable);
        checkThreadPoolName(thread2, 2);
        assertEquals(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/SortedMultisets.java

    import java.util.Iterator;
    import java.util.NavigableSet;
    import java.util.NoSuchElementException;
    import java.util.SortedSet;
    import org.jspecify.annotations.Nullable;
    
    /**
     * Provides static utility methods for creating and working with {@link SortedMultiset} instances.
     *
     * @author Louis Wasserman
     */
    @GwtCompatible
    final class SortedMultisets {
      private SortedMultisets() {}
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 5.5K bytes
    - Viewed (0)
Back to top