Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for Implementation (0.12 sec)

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

    import org.codelibs.core.lang.StringUtil;
    
    /**
     * Utility class for handling Base64 encoding and decoding.
     * <p>
     * This class now uses the standard {@link java.util.Base64} implementation
     * instead of a custom implementation, providing better security and performance.
     * The API remains backward compatible with previous versions.
     * </p>
     *
     * @author higa
     */
    public abstract class Base64Util {
    
        /**
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/AbstractExtractorTest.java

        }
    
        /**
         * Test that validateInputStream works with various InputStream implementations.
         */
        public void test_validateInputStream_worksWithVariousStreamTypes() {
            // ByteArrayInputStream
            extractor.testValidateInputStream(new ByteArrayInputStream(new byte[10]));
    
            // Custom InputStream implementation
            final InputStream customStream = new InputStream() {
                @Override
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            }
    
            @Override
            public int getStartPosition() {
                throw new UnsupportedOperationException("getStartPosition() is not supported in this implementation");
            }
    
            @Override
            public int getOffset() {
                throw new UnsupportedOperationException("getOffset() is not supported in this implementation");
            }
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 55.4K bytes
    - Viewed (1)
  4. src/main/java/org/codelibs/fess/app/web/base/login/EntraIdCredential.java

    import org.lastaflute.web.login.credential.LoginCredential;
    
    import com.microsoft.aad.msal4j.IAccount;
    import com.microsoft.aad.msal4j.IAuthenticationResult;
    
    /**
     * Microsoft Entra ID credential implementation for Fess authentication.
     * Provides login credential functionality using Entra ID authentication results.
     */
    public class EntraIdCredential implements LoginCredential, FessCredential {
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java

    import org.codelibs.fess.util.DocList;
    import org.codelibs.fess.util.DocumentUtil;
    import org.codelibs.fess.util.MemoryUtil;
    
    import jakarta.annotation.PostConstruct;
    
    /**
     * Implementation of IndexUpdateCallback for handling document indexing operations.
     * This class manages the process of updating the search index with documents from
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 10.5K bytes
    - Viewed (0)
  6. README.md

      <artifactId>curl4j</artifactId>
      <version>x.y.z</version>
    </dependency>
    ```
    
    See [Maven Central](https://repo1.maven.org/maven2/org/codelibs/curl4j/) for available versions.
    
    ### Gradle
    
    ```groovy
    implementation 'org.codelibs:curl4j:x.y.z'
    ```
    
    ## Quick Start
    
    ### Synchronous request
    
    ```java
    import org.codelibs.curl.Curl;
    import org.codelibs.curl.CurlResponse;
    
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/query/QueryProcessor.java

        }
    
        /**
         * Adds a query command to the processor.
         *
         * @param name the name to associate with the command (typically the query class simple name)
         * @param queryCommand the query command implementation to add
         * @throws IllegalArgumentException if name or queryCommand is null
         */
        public void add(final String name, final QueryCommand queryCommand) {
            if (name == null || queryCommand == null) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

         * Retrieves web crawling configurations with various filtering options.
         *
         * @param withLabelType whether to include label type information (currently not used in implementation)
         * @param withRoleType whether to include role type information (currently not used in implementation)
         * @param available whether to filter only available configurations
         * @param idList the list of configuration IDs to retrieve, or null for no ID filtering
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 19.5K bytes
    - Viewed (1)
  9. src/main/java/org/codelibs/fess/validation/UriTypeValidator.java

    import jakarta.validation.ConstraintDefinitionException;
    import jakarta.validation.ConstraintValidator;
    import jakarta.validation.ConstraintValidatorContext;
    
    /**
     * Validator implementation for URI type constraints.
     * This validator checks URI strings against specified protocol types.
     */
    public class UriTypeValidator implements ConstraintValidator<UriType, String> {
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Nov 23 12:34:02 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/core/misc/Base64UtilTest.java

         *
         * @throws Exception
         */
        public void testBackwardCompatibility() throws Exception {
            // These test cases ensure that the new java.util.Base64 implementation
            // produces the same output as the old custom implementation
    
            // Test case 1: Standard padding
            final byte[] data1 = "abc".getBytes();
            assertEquals("YWJj", Base64Util.encode(data1));
    
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 6K bytes
    - Viewed (0)
Back to top