Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1181 - 1190 of 4,177 for republic (0.05 seconds)

  1. android/guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java

     */
    @NullUnmarked
    public class FilesSimplifyPathTest extends TestCase {
    
      public void testSimplifyEmptyString() {
        assertThat(simplifyPath("")).isEqualTo(".");
      }
    
      public void testSimplifyDot() {
        assertThat(simplifyPath(".")).isEqualTo(".");
      }
    
      public void testSimplifyWhiteSpace() {
        assertThat(simplifyPath(" ")).isEqualTo(" ");
      }
    
      public void testSimplify2() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  2. guava-tests/test/com/google/common/hash/MacHashFunctionTest.java

                .putString("!!!", UTF_8)
                .hash());
      }
    
      public void testCustomKey() throws Exception {
        SecretKey customKey =
            new SecretKey() {
              @Override
              public String getAlgorithm() {
                return "HmacMD5";
              }
    
              @Override
              public byte[] getEncoded() {
                return new byte[8];
              }
    
              @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 14.2K bytes
    - Click Count (0)
  3. guava-tests/test/com/google/common/io/FilesSimplifyPathTest.java

     */
    @NullUnmarked
    public class FilesSimplifyPathTest extends TestCase {
    
      public void testSimplifyEmptyString() {
        assertThat(simplifyPath("")).isEqualTo(".");
      }
    
      public void testSimplifyDot() {
        assertThat(simplifyPath(".")).isEqualTo(".");
      }
    
      public void testSimplifyWhiteSpace() {
        assertThat(simplifyPath(" ")).isEqualTo(" ");
      }
    
      public void testSimplify2() {
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/mylasta/mail/EsStatusPostcard.java

        public void setFrom(String from, String personal) {
            doSetFrom(from, personal);
        }
    
        public void addTo(String to) {
            doAddTo(to);
        }
    
        public void addTo(String to, String personal) {
            doAddTo(to, personal);
        }
    
        public void addCc(String cc) {
            doAddCc(cc);
        }
    
        public void addCc(String cc, String personal) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 4.7K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/util/QueryResponseListTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.junit.jupiter.api.Test;
    
    public class QueryResponseListTest extends UnitFessTestCase {
        @Test
        public void test_calculatePageInfo_page0() {
            QueryResponseList qrList;
    
            qrList = new QueryResponseList(null, 0, 20, 0) {
                @Override
                public int size() {
                    return 0;
                }
            };
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 40.1K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/app/pager/CharMappingPager.java

        /** Character mapping ID for search filtering. */
        public String id;
    
        /**
         * Default constructor for CharMappingPager.
         */
        public CharMappingPager() {
            // Default constructor
        }
    
        /**
         * Clears all search criteria and resets pagination settings.
         */
        public void clear() {
            allRecordCount = 0;
            allPageCount = 0;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.5K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/app/pager/StopwordsPager.java

     * This class handles the state and logic for paginating through a list of stopwords,
     * including total record count, page size, and current page number.
     */
    public class StopwordsPager implements Serializable {
    
        /**
         * Constructs a new pager for stopwords.
         */
        public StopwordsPager() {
            // do nothing
        }
    
        private static final long serialVersionUID = 1L;
    
        /** The total number of records. */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 5.6K bytes
    - Click Count (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/ExecutionSequencerTest.java

    /** Tests for {@link ExecutionSequencer} */
    @NullUnmarked
    @GwtIncompatible
    @J2ktIncompatible
    public class ExecutionSequencerTest extends TestCase {
    
      ExecutorService executor;
    
      private ExecutionSequencer serializer;
      private SettableFuture<@Nullable Void> firstFuture;
      private TestCallable firstCallable;
    
      @Override
      public void setUp() throws Exception {
        executor = newCachedThreadPool();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 16 22:45:21 GMT 2026
    - 13.6K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/auth/AuthenticationManager.java

     * This class coordinates user operations across different authentication providers.
     */
    public class AuthenticationManager {
        /** Array of authentication chains to process user operations. */
        protected AuthenticationChain[] chains = {};
    
        /**
         * Default constructor for AuthenticationManager.
         */
        public AuthenticationManager() {
            // Default constructor
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 3.1K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceActionTest.java

    import org.junit.jupiter.api.Test;
    
    public class AdminMaintenanceActionTest extends UnitFessTestCase {
    
        // ===================================================================================
        //                                                                     isLogFilename
        //                                                                     ==============
    
        @Test
        public void test_isLogFilename_logExtension() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 5.3K bytes
    - Click Count (0)
Back to Top