Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 397 for INSTANCES (0.04 sec)

  1. samples/simple-client/src/main/java/okhttp3/sample/OkHttpContributors.java

          for (Contributor contributor : contributors) {
            System.out.println(contributor.login + ": " + contributor.contributions);
          }
        }
      }
    
      private OkHttpContributors() {
        // No instances.
      }
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Apr 05 03:30:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java

                assertEquals(type, iate.getType());
                assertEquals(message, e.getMessage());
            }
        }
    
        public void test_multipleExceptionInstances() {
            // Test multiple instances are independent
            InvalidAccessTokenException exception1 = new InvalidAccessTokenException("Type1", "Message1");
            InvalidAccessTokenException exception2 = new InvalidAccessTokenException("Type2", "Message2");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/SmbNegotiationTest.java

            assertEquals(1, negotiationDifferentSizes.getRequestRaw().length);
            assertEquals(5, negotiationDifferentSizes.getResponseRaw().length);
        }
    
        @Test
        @DisplayName("Test multiple instances do not interfere")
        void testMultipleInstances() {
            // Create another instance with different data
            SmbNegotiationRequest anotherRequest = mock(SmbNegotiationRequest.class);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessSecurityResourceProviderTest.java

        }
    
        // Test thread safety
        public void test_threadSafety() {
            // Test that the provider returns the same instances in multi-threaded environment
            final int threadCount = 10;
            final Thread[] threads = new Thread[threadCount];
            final InvertibleCryptographer[] invertibles = new InvertibleCryptographer[threadCount];
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  5. src/test/java/jcifs/EmptyIteratorTest.java

                assertNull(emptyIterator.next(), "next should consistently return null");
            }
        }
    
        @RepeatedTest(5)
        @DisplayName("EmptyIterator should behave consistently across multiple instances")
        void testMultipleInstanceConsistency() {
            // Given & When & Then
            assertDoesNotThrow(() -> {
                try (EmptyIterator iterator1 = new EmptyIterator();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 12K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Multiset.java

       * immediately reflected in the other. However, multiset changes may or may not be reflected in
       * any {@code Entry} instances already retrieved from the entry set (this is
       * implementation-dependent). Furthermore, implementations are not required to support
       * modifications to the entry set at all, and the {@code Entry} instances themselves don't even
       * have methods for modification. See the specific implementation class for more details on how
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 20.9K bytes
    - Viewed (0)
  7. api/maven-api-toolchain/src/site/apt/index.apt

     The following are generated from this model:
    
       * {{{./apidocs/index.html}Java sources}} with <<<Builder>>> inner classes for immutable instances creation.
    
     See also corresponding {{{../../maven-toolchain-model/index.html}Maven classical toolchains model documentation}}.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Dec 31 16:32:07 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. api/maven-api-di/src/main/java/org/apache/maven/api/di/package-info.java

     * managed and injected throughout Maven's execution lifecycle. The framework is designed
     * to be lightweight yet powerful, supporting various scopes of object lifecycle from
     * singleton instances to mojo-execution-scoped beans.
     * <p>
     * Key features include:
     * <ul>
     *   <li>Constructor, method, and field injection</li>
     *   <li>Qualifiers for distinguishing between beans of the same type</li>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jan 30 23:28:59 UTC 2025
    - 896 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java

    import org.codelibs.fess.dict.DictionaryItem;
    
    import jakarta.annotation.PostConstruct;
    
    /**
     * A dictionary creator for synonym files.
     * This class is responsible for creating {@link SynonymFile} instances
     * from files that match the pattern "synonym.*\\.txt".
     */
    public class SynonymCreator extends DictionaryCreator {
        private static final Logger logger = LogManager.getLogger(SynonymCreator.class);
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java

         */
        public FacetResponse getFacetResponse() {
            return facetResponse;
        }
    
        /**
         * Creates a new SearchResultBuilder for constructing SearchResult instances.
         *
         * @return A new SearchResultBuilder instance
         */
        public static SearchResultBuilder create() {
            return new SearchResultBuilder();
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
Back to top