- Sort Score
- Result 10 results
- Languages All
Results 981 - 990 of 5,965 for public (0.03 sec)
-
guava-tests/test/com/google/common/cache/CacheBuilderTest.java
/** Unit tests for CacheBuilder. */ @GwtCompatible // We are intentionally testing the TimeUnit overloads, too. @SuppressWarnings("LongTimeUnit_ExpireAfterWrite_Seconds") @NullUnmarked public class CacheBuilderTest extends TestCase { public void testNewBuilder() { CacheLoader<Object, Integer> loader = constantLoader(1); LoadingCache<String, Integer> cache =Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 25K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/FilesTest.java
this.canDelete = canDelete; } @Override public boolean renameTo(File to) { return canRename && super.renameTo(to); } @Override public boolean delete() { return canDelete && super.delete(); } private static final long serialVersionUID = 0; } public void testLineReading() throws IOException { File temp = createTempFile();Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 22.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java
/** The ID of the key match. */ public String id; /** The term of the key match. */ public String term; /** The query of the key match. */ public String query; /** The max size of the key match. */ public String maxSize; /** The boost of the key match. */ public String boost; /** The creator of the key match. */ public String createdBy;Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/org/codelibs/core/lang/StringUtilTest.java
import static org.junit.Assert.assertTrue; import java.lang.reflect.Method; import org.junit.Test; /** * @author higa * */ public class StringUtilTest { /** * @throws Exception */ @Test public void testReplace() throws Exception { assertEquals("1", "1bc45", StringUtil.replace("12345", "23", "bc"));Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 12K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/FileConfigDbm.java
public ColumnInfo columnCreatedTime() { return _columnCreatedTime; } public ColumnInfo columnDepth() { return _columnDepth; } public ColumnInfo columnDescription() { return _columnDescription; } public ColumnInfo columnExcludedDocPaths() { return _columnExcludedDocPaths; } public ColumnInfo columnExcludedPaths() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 18.1K bytes - Viewed (0) -
fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/util/OpenSearchCrawlerConfig.java
* This class provides configuration for index names, shards, and replicas * for the queue, data, and filter indices used by the crawler. */ public class OpenSearchCrawlerConfig { /** * Constructs a new OpenSearchCrawlerConfig. */ public OpenSearchCrawlerConfig() { // Default constructor } /** * Queue index name. */Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 5.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsWebAuthenticationBhv.java
@Override public String asTableDbName() { return asEsIndexType(); } @Override protected String asEsIndex() { return "fess_config.web_authentication"; } @Override public String asEsIndexType() { return "web_authentication"; } @Override public String asEsSearchType() { return "web_authentication";Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.5K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractTable.java
} @Override public void clear() { AbstractTable.this.clear(); } @Override public Iterator<Table.Cell<R, C, V>> iterator() { return cellIterator(); } @Override public Spliterator<Cell<R, C, V>> spliterator() { return cellSpliterator(); } @Override public int size() { return AbstractTable.this.size();Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 6.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PurgeDocJobTest.java
} public void test_execute_withEmptyIndexName() { // Configure empty index name documentUpdateIndex = ""; fessConfig = new TestFessConfig() { @Override public String getIndexFieldExpires() { return expiresFieldName; } @Override public String getIndexDocumentUpdateIndex() {Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/reflect/TypeTokenTest.java
public void testGetClass() { TypeToken<List> token = TypeToken.of(List.class); assertEquals(new TypeToken<List>() {}, token); } public void testGetType() { TypeToken<?> t = TypeToken.of(StringList.class.getGenericInterfaces()[0]); assertEquals(new TypeToken<List<String>>() {}, t); } public void testNonStaticLocalClass() { class Local<T> {}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Sep 02 17:23:59 UTC 2025 - 89K bytes - Viewed (0)