- Sort Score
- Result 10 results
- Languages All
Results 971 - 980 of 5,824 for republic (0.4 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsLabelTypeCB.java
public void columnCreatedTime() { doColumn("createdTime"); } public void columnExcludedPaths() { doColumn("excludedPaths"); } public void columnIncludedPaths() { doColumn("includedPaths"); } public void columnName() { doColumn("name"); } public void columnPermissions() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.3K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java
* Can be subclassed to specify tests that should be suppressed. * * @author Kevin Bourrillion */ @GwtIncompatible public class TestsForSetsInJavaUtil { public static Test suite() { return new TestsForSetsInJavaUtil().allTests(); } public Test allTests() { TestSuite suite = new TestSuite("java.util Sets"); suite.addTest(testsForCheckedNavigableSet());
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 19.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/DataStoreTest.java
import org.codelibs.fess.opensearch.config.exentity.DataConfig; import org.codelibs.fess.unit.UnitFessTestCase; public class DataStoreTest extends UnitFessTestCase { private DataStore dataStore; @Override public void setUp() throws Exception { super.setUp(); } public void test_store_basic() { // Create a simple DataStore implementation for testing
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/MultisetsTest.java
/** * Tests for {@link Multisets}. * * @author Mike Bostock * @author Jared Levy * @author Louis Wasserman */ @GwtCompatible @NullMarked public class MultisetsTest extends TestCase { /* See MultisetsImmutableEntryTest for immutableEntry() tests. */ public void testNewTreeMultisetDerived() { TreeMultiset<DerivedComparable> set = TreeMultiset.create(); assertTrue(set.isEmpty());
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 11.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/SLinkedList.java
* * @author higa * @param <E> the element type */ public class SLinkedList<E> implements Cloneable, Externalizable { static final long serialVersionUID = 1L; private transient Entry header = new Entry(null, null, null); private transient int size = 0; /** * Creates an {@link SLinkedList}. */ public SLinkedList() { header.next = header;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ACE.java
public static final int GENERIC_ALL = 0x10000000; // 28 /** Generic execute permission */ public static final int GENERIC_EXECUTE = 0x20000000; // 29 /** Generic write permission */ public static final int GENERIC_WRITE = 0x40000000; // 30 /** Generic read permission */ public static final int GENERIC_READ = 0x80000000; // 31 /** Inheritance flag: child objects inherit this ACE */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessUserLocaleProcessProviderTest.java
import org.lastaflute.web.servlet.request.RequestManager; public class FessUserLocaleProcessProviderTest extends UnitFessTestCase { private FessUserLocaleProcessProvider provider; @Override public void setUp() throws Exception { super.setUp(); provider = new FessUserLocaleProcessProvider(); } @Override public void tearDown() throws Exception {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/google/MapGenerators.java
@Override public List<String> create(String[] elements) { ImmutableMap.Builder<String, Integer> builder = ImmutableMap.builder(); for (int i = 0; i < elements.length; i++) { builder.put(elements[i], i); } return builder.buildOrThrow().keySet().asList(); } } public static class ImmutableMapValueListGenerator extends TestStringListGenerator { @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 8.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PurgeThumbnailJobTest.java
} return purgeCallCount; } public void setPurgeCallCount(long count) { this.purgeCallCount = count; } public void setThrowException(boolean throwException) { this.throwException = throwException; } public void setExceptionMessage(String message) { this.exceptionMessage = message; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.2K bytes - Viewed (0) -
docs/smb3-features/04-directory-leasing-design.md
### 6.1 Configuration Properties ```java // In PropertyConfiguration.java public static final String USE_DIRECTORY_LEASING = "jcifs.smb.client.useDirectoryLeasing"; public static final String DIRECTORY_CACHE_SCOPE = "jcifs.smb.client.directoryCacheScope"; public static final String DIRECTORY_CACHE_TIMEOUT = "jcifs.smb.client.directoryCacheTimeout";
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0)