- Sort Score
- Result 10 results
- Languages All
Results 3171 - 3180 of 6,993 for public (0.04 sec)
-
src/main/java/org/codelibs/fess/es/user/cbean/bs/BsRoleCB.java
@Override public RoleDbm asDBMeta() { return RoleDbm.getInstance(); } @Override public String asTableDbName() { return "role"; } @Override public boolean hasSpecifiedColumn() { return _specification != null; } @Override public ConditionQuery localCQ() { return doGetConditionQuery(); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 6.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/exentity/User.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/VerifyTest.java
@GwtCompatible(emulated = true) public class VerifyTest extends TestCase { public void testVerify_simple_success() { verify(true); } public void testVerify_simple_failure() { assertThrows(VerifyException.class, () -> verify(false)); } public void testVerify_simpleMessage_success() { verify(true, "message"); } public void testVerify_simpleMessage_failure() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Sep 17 18:14:12 UTC 2024 - 3.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RequestData.java
} } public String getUrl() { return url; } public void setUrl(final String url) { this.url = url; } public String getMetaData() { return metaData; } public void setMetaData(final String metaData) { this.metaData = metaData; } @Override public String toString() {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:40:57 UTC 2024 - 2.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/FilteredCollectionsTestUtil.java
*/ /* * TODO(cpovirk): Should all the tests for filtered collections run under GWT, too? Currently, they * don't. */ public final class FilteredCollectionsTestUtil { private static final Predicate<Integer> EVEN = new Predicate<Integer>() { @Override public boolean apply(Integer input) { return input % 2 == 0; } };
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 13K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ListsTest.java
assertEquals(emptyList(), bigger); } public void testNewArrayListWithExpectedSize_negative() { assertThrows(IllegalArgumentException.class, () -> newArrayListWithExpectedSize(-1)); } public void testNewArrayListVarArgs() { ArrayList<Integer> list = Lists.newArrayList(0, 1, 1); assertEquals(SOME_COLLECTION, list); } public void testComputeArrayListCapacity() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 35K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ListsTest.java
assertEquals(emptyList(), bigger); } public void testNewArrayListWithExpectedSize_negative() { assertThrows(IllegalArgumentException.class, () -> newArrayListWithExpectedSize(-1)); } public void testNewArrayListVarArgs() { ArrayList<Integer> list = Lists.newArrayList(0, 1, 1); assertEquals(SOME_COLLECTION, list); } public void testComputeArrayListCapacity() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 35K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/util/FessCrawlerConfig.java
*/ package org.codelibs.fess.crawler.util; import org.codelibs.fess.util.ComponentUtil; public class FessCrawlerConfig extends EsCrawlerConfig { @Override public String getQueueIndex() { return ComponentUtil.getFessConfig().getIndexDocumentCrawlerIndex() + ".queue"; } @Override public String getDataIndex() { return ComponentUtil.getFessConfig().getIndexDocumentCrawlerIndex() + ".data";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/AbstractImmutableSetTest.java
Iterator<? extends E> elements); public void testCreation_noArgs() { Set<String> set = of(); assertEquals(Collections.<String>emptySet(), set); assertSame(this.<String>of(), set); } public void testCreation_oneElement() { Set<String> set = of("a"); assertEquals(singleton("a"), set); } public void testCreation_twoElements() { Set<String> set = of("a", "b");
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 18.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java
return boostDocumentRuleList; } public OptionalEntity<BoostDocumentRule> getBoostDocumentRule(final String id) { return boostDocumentRuleBhv.selectByPK(id); } public void store(final BoostDocumentRule boostDocumentRule) { boostDocumentRuleBhv.insertOrUpdate(boostDocumentRule, op -> op.setRefreshPolicy(Constants.TRUE)); } public void delete(final BoostDocumentRule boostDocumentRule) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.3K bytes - Viewed (0)