Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 4,978 for Republic (0.06 sec)

  1. src/main/java/jcifs/internal/smb2/rdma/RdmaChannelInfo.java

     * License as published by the Free Software Foundation; either
     * version 2.1 of the License, or (at your option) any later version.
     *
     * This library is distributed in the hope that it will be useful,
     * but WITHOUT ANY WARRANTY; without even the implied warranty of
     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
     * Lesser General Public License for more details.
     *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class AuthenticationManagerTest extends UnitFessTestCase {
    
        private AuthenticationManager authenticationManager;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            authenticationManager = new AuthenticationManager();
        }
    
        // Test default constructor
        public void test_constructor() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 14K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java

    import org.opensearch.index.query.TermQueryBuilder;
    import org.opensearch.index.query.TermsQueryBuilder;
    
    public class IndexingHelperTest extends UnitFessTestCase {
        private IndexingHelper indexingHelper;
    
        private long documentSizeByQuery = 0L;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            ComponentUtil.register(new SystemHelper(), "systemHelper");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 29.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/main/java/jcifs/util/SmbCircuitBreaker.java

                }
    
                public long getTotalRequests() {
                    return totalRequests;
                }
    
                public long getTotalFailures() {
                    return totalFailures;
                }
    
                public double getFailureRate() {
                    return failureRate;
                }
    
                public long getAverageResponseTime() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 33.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top