Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 1,407 for isInstance (0.06 sec)

  1. src/main/java/org/codelibs/core/misc/Pair.java

         */
        public static <T1, T2> Pair<T1, T2> pair(final T1 first, final T2 second) {
            return new Pair<>(first, second);
        }
    
        /**
         * Constructs an instance.
         */
        public Pair() {
        }
    
        /**
         * Constructs an instance.
         *
         * @param first
         *            The first value
         * @param second
         *            The second value
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/ExtractorFactory.java

            this.extractorMap = extractorMap;
        }
    
        /**
         * Creates a new ExtractorBuilder instance.
         *
         * @param in      The input stream to be processed by the extractor.
         * @param params  The parameters to be used by the extractor.
         * @return A new ExtractorBuilder instance.
         */
        public ExtractorBuilder builder(final InputStream in, final Map<String, String> params) {
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/UploadForm.java

     */
    public class UploadForm {
    
        /**
         * The dictionary ID that identifies which protected words dictionary configuration to update.
         * This ID corresponds to a specific protected words dictionary instance in the system.
         */
        @Required
        public String dictId;
    
        /**
         * The multipart file containing the protected words to be uploaded.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/EmptyImmutableListMultimap.java

     *
     * @author Jared Levy
     */
    @GwtCompatible
    final class EmptyImmutableListMultimap extends ImmutableListMultimap<Object, Object> {
      static final EmptyImmutableListMultimap INSTANCE = new EmptyImmutableListMultimap();
    
      private EmptyImmutableListMultimap() {
        super(ImmutableMap.<Object, ImmutableList<Object>>of(), 0);
      }
    
      /*
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 14:59:07 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  5. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/entity/OpenSearchAccessResultData.java

        /**
         * Field name for encoding.
         */
        public static final String ENCODING = "encoding";
    
        /**
         * Creates a new instance of OpenSearchAccessResultData.
         */
        public OpenSearchAccessResultData() {
        }
    
        /**
         * Creates a new instance of OpenSearchAccessResultData from a source map.
         * This constructor is used when loading data from OpenSearch.
         *
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb2/session/Smb2LogoffResponseTest.java

    @ExtendWith(MockitoExtension.class)
    class Smb2LogoffResponseTest {
    
        // Helper to create an instance with a mocked Configuration
        private Smb2LogoffResponse newResponse() {
            Configuration cfg = Mockito.mock(Configuration.class);
            return new Smb2LogoffResponse(cfg);
        }
    
        @Test
        @DisplayName("Constructor accepts a Configuration and creates instance")
        void constructor_happyPath() {
            // Arrange
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  7. api/maven-api-xml/src/main/java/org/apache/maven/api/xml/XmlService.java

        /**
         * Gets the singleton instance of the XmlService.
         *
         * @return the XmlService instance
         * @throws IllegalStateException if no implementation is found
         */
        private static XmlService getService() {
            return Holder.INSTANCE;
        }
    
        /** Holder class for lazy initialization of the default instance */
        private static final class Holder {
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 9.2K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java

            /**
             * Sets the initial capacity for the text normalization context.
             *
             * @param initialCapacity the initial capacity to be set
             * @return the updated TextNormalizeContext instance
             */
            public TextNormalizeContext initialCapacity(final int initialCapacity) {
                this.initialCapacity = initialCapacity;
                return this;
            }
    
            /**
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 12K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

         * @param index The index name.
         * @return This SuggestIndexer instance.
         */
        public SuggestIndexer setIndexName(final String index) {
            this.index = index;
            return this;
        }
    
        /**
         * Sets the supported fields.
         * @param supportedFields The supported fields.
         * @return This SuggestIndexer instance.
         */
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 34.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/sso/SsoManager.java

                    return authenticator.logout(user);
                }
            }
            return null;
        }
    
        /**
         * Gets the SSO authenticator instance for the configured SSO type.
         *
         * @return The SSO authenticator instance, or null if not found
         */
        protected SsoAuthenticator getAuthenticator() {
            final String name = getSsoType() + "Authenticator";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
Back to top