Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,554 for PUBLIC (0.03 sec)

  1. src/test/java/org/codelibs/fess/util/SearchEngineUtilTest.java

    import org.opensearch.core.xcontent.MediaType;
    import org.opensearch.core.xcontent.ToXContent;
    import org.opensearch.core.xcontent.XContentBuilder;
    import org.opensearch.search.SearchHit;
    
    public class SearchEngineUtilTest extends UnitFessTestCase {
    
        public void test_getXContentBuilderOutputStream_success() {
            XContentBuilderCallback callback = (builder, params) -> {
                builder.startObject();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

    import org.xml.sax.InputSource;
    
    public class FessPropTest extends UnitFessTestCase {
    
        @Override
        protected boolean isUseOneTimeContainer() {
            return true;
        }
    
        public void test_maxUsernameLength() throws IOException {
            FessProp.propMap.clear();
            FessConfig fessConfig = new FessConfig.SimpleImpl() {
                @Override
                public Integer getLdapMaxUsernameLengthAsInteger() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/dict/mapping/CharMappingItemTest.java

     */
    package org.codelibs.fess.dict.mapping;
    
    import java.util.Arrays;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class CharMappingItemTest extends UnitFessTestCase {
    
        public void test_constructor_withValidInputs() {
            CharMappingItem item = new CharMappingItem(1L, new String[] { "input" }, "output");
    
            // Test basic properties that exist
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.2K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/util/ResourceUtilTest.java

    import java.io.File;
    import java.io.FilenameFilter;
    import java.nio.file.Path;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.dbflute.optional.OptionalEntity;
    
    public class ResourceUtilTest extends UnitFessTestCase {
        public void test_resolve() {
            String value;
    
            value = null;
            assertNull(ResourceUtil.resolve(value));
    
            value = "";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/exception/FessSystemExceptionTest.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class FessSystemExceptionTest extends UnitFessTestCase {
    
        public void test_constructor_withMessage() {
            // Test constructor with message only
            String message = "Test exception message";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/JobHelperTest.java

            public void insertOrUpdate(JobLog entity) {
                // Mock implementation that doesn't require client
                entity.setLastUpdated(System.currentTimeMillis());
            }
    
            @Override
            public void insert(JobLog entity) {
                // Mock implementation that doesn't require client
                entity.setLastUpdated(System.currentTimeMillis());
            }
    
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/opensearch/query/StoredLtrQueryBuilder.java

        public static final ParseField FEATURESET_NAME = new ParseField("featureset");
        /** The parse field for the store name. */
        public static final ParseField STORE_NAME = new ParseField("store");
        /** The parse field for the query parameters. */
        public static final ParseField PARAMS = new ParseField("params");
        /** The parse field for the active features. */
        public static final ParseField ACTIVE_FEATURES = new ParseField("active_features");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.exception;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class SsoProcessExceptionTest extends UnitFessTestCase {
    
        public void test_constructor_withMessage() {
            // Test constructor with message only
            String message = "SSO authentication failed";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/tomcat/valve/SuppressErrorReportValveTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class SuppressErrorReportValveTest extends UnitFessTestCase {
    
        private SuppressErrorReportValve valve;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            valve = new SuppressErrorReportValve();
        }
    
        public void test_constructor() {
            assertNotNull(valve);
        }
    
        public void test_showReportDisabled() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/SambaHelper.java

         */
        public static final int SID_TYPE_DOM_GRP = 2;
    
        /**
         * SID type for a domain.
         */
        public static final int SID_TYPE_DOMAIN = 3;
    
        /**
         * SID type for an invalid SID.
         */
        public static final int SID_TYPE_INVALID = 7;
    
        /**
         * SID type for an unknown SID.
         */
        public static final int SID_TYPE_UNKNOWN = 8;
    
        /**
         * SID type for a non-use SID.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
Back to top