- Sort Score
- Result 10 results
- Languages All
Results 1071 - 1080 of 6,689 for Public (0.06 sec)
-
src/main/java/org/codelibs/fess/es/config/exentity/CrawlingConfig.java
public static final String PROXY_HOST = HcHttpClient.PROXY_HOST_PROPERTY; public static final String USER_AGENT = HcHttpClient.USER_AGENT_PROPERTY; } // xpath.* public static class XPath { public static final String DEFAULT_LANG = "default.lang"; public static final String DEFAULT_CONTENT = "default.content";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/bs/BsDataConfigCB.java
public void columnBoost() { doColumn("boost"); } public void columnCreatedBy() { doColumn("createdBy"); } public void columnCreatedTime() { doColumn("createdTime"); } public void columnDescription() { doColumn("description"); } public void columnHandlerName() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 7.5K bytes - Viewed (0) -
guava-testlib/src/com/google/common/escape/testing/EscaperAsserts.java
* * @author David Beaumont * @since 15.0 */ @GwtCompatible public final class EscaperAsserts { private EscaperAsserts() {} /** * Asserts that an escaper behaves correctly with respect to null inputs. * * @param escaper the non-null escaper to test */ public static void assertBasic(Escaper escaper) throws IOException {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jan 18 20:55:09 UTC 2022 - 3.8K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/escape/testing/EscaperAsserts.java
* * @author David Beaumont * @since 15.0 */ @GwtCompatible public final class EscaperAsserts { private EscaperAsserts() {} /** * Asserts that an escaper behaves correctly with respect to null inputs. * * @param escaper the non-null escaper to test */ public static void assertBasic(Escaper escaper) throws IOException {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jan 18 20:55:09 UTC 2022 - 3.8K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/ListMultimapAsMapTester.java
@ElementTypesAreNonnullByDefault public class ListMultimapAsMapTester<K extends @Nullable Object, V extends @Nullable Object> extends AbstractListMultimapTester<K, V> { public void testAsMapValuesImplementList() { for (Collection<V> valueCollection : multimap().asMap().values()) { assertTrue(valueCollection instanceof List); } } public void testAsMapGetImplementsList() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 3.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ForwardingSortedMultisetTest.java
public Entry<E> firstEntry() { return standardFirstEntry(); } @Override public Entry<E> lastEntry() { return standardLastEntry(); } @Override public Entry<E> pollFirstEntry() { return standardPollFirstEntry(); } @Override public Entry<E> pollLastEntry() { return standardPollLastEntry(); } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/sql/StatementUtil.java
import java.sql.Statement; import org.codelibs.core.exception.SQLRuntimeException; import org.codelibs.core.log.Logger; /** * {@link Statement}用のユーティリティクラスです。 * * @author higa */ public abstract class StatementUtil { private static final Logger logger = Logger.getLogger(StatementUtil.class); /** * SQLを実行します。 * * @param statement
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 5.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/net/PercentEscaperTest.java
import junit.framework.TestCase; /** * Tests for {@link PercentEscaper}. * * @author David Beaumont */ @GwtCompatible public class PercentEscaperTest extends TestCase { /** Tests that the simple escaper treats 0-9, a-z and A-Z as safe */ public void testSimpleEscaper() { UnicodeEscaper e = new PercentEscaper("", false); for (char c = 0; c < 128; c++) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 15:41:36 UTC 2024 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/BsDataConfig.java
public void setBoost(Float value) { registerModifiedProperty("boost"); this.boost = value; } public String getCreatedBy() { checkSpecifiedProperty("createdBy"); return convertEmptyToNull(createdBy); } public void setCreatedBy(String value) { registerModifiedProperty("createdBy"); this.createdBy = value; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.9K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtException.java
// error classes public static final int SUCCESS = 0; public static final int ERR_NAM_SRVC = 0x01; public static final int ERR_SSN_SRVC = 0x02; // name service error codes public static final int FMT_ERR = 0x1; public static final int SRV_ERR = 0x2; public static final int IMP_ERR = 0x4; public static final int RFS_ERR = 0x5; public static final int ACT_ERR = 0x6; public static final int CFT_ERR = 0x7;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.8K bytes - Viewed (0)