- Sort Score
- Result 10 results
- Languages All
Results 1071 - 1080 of 6,682 for republic (0.08 sec)
-
src/main/java/jcifs/internal/smb2/Smb2Constants.java
* */ public static final int SMB2_NEGOTIATE_SIGNING_ENABLED = 0x0001; /** * */ public static final int SMB2_NEGOTIATE_SIGNING_REQUIRED = 0x0002; /** * */ public static final int SMB2_DIALECT_0202 = 0x0202; /** * */ public static final int SMB2_DIALECT_0210 = 0x0210; /** * */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ContentNotFoundException.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.exception; public class ContentNotFoundException extends FessSystemException { private static final long serialVersionUID = 1L; public ContentNotFoundException(final String parentUrl, final String url) { super("Not Found: " + url + " Parent: " + parentUrl, false, false); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 947 bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java
import org.codelibs.fess.unit.UnitFessTestCase; public class FessFileTransformerTest extends UnitFessTestCase { private String encodeUrl(final String url) { try { return URLEncoder.encode(url, Constants.UTF_8); } catch (final UnsupportedEncodingException e) { throw new FessSystemException("Unsupported encoding.", e); } } public void test_decodeUrl_ok() throws Exception {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jul 04 06:20:49 UTC 2024 - 9.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedInputs.java
public ExceptionWithManyConstructors() {} public ExceptionWithManyConstructors(Integer i) {} public ExceptionWithManyConstructors(Throwable a) {} public ExceptionWithManyConstructors(Throwable a, Throwable b) {} public ExceptionWithManyConstructors(String s, Throwable b) { usedExpectedConstructor = true; } public ExceptionWithManyConstructors(Throwable a, Throwable b, Throwable c) {}
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 06 13:46:56 UTC 2023 - 6.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerContext.java
} public long getAccessCount() { return accessCount.get(); } public long incrementAndGetAccessCount() { return accessCount.incrementAndGet(); } public long decrementAndGetAccessCount() { return accessCount.decrementAndGet(); } public CrawlerStatus getStatus() { return status; }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:40:57 UTC 2024 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/KeyMatchPager.java
private int pageSize; private int currentPageNumber; public String id; public String term; public String query; public String maxSize; public String boost; public String createdBy; public String createdTime; public String versionNo; public void clear() { allRecordCount = 0; allPageCount = 0;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/bsentity/BsSearchLog.java
checkSpecifiedProperty("queryTime"); return queryTime; } public void setQueryTime(Long value) { registerModifiedProperty("queryTime"); this.queryTime = value; } public String getReferer() { checkSpecifiedProperty("referer"); return convertEmptyToNull(referer); } public void setReferer(String value) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 12.2K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java
private volatile int currentVisitedProjectCount; public ExecutionEventLogger(MessageBuilderFactory messageBuilderFactory) { this(messageBuilderFactory, LoggerFactory.getLogger(ExecutionEventLogger.class)); } public ExecutionEventLogger(MessageBuilderFactory messageBuilderFactory, Logger logger) { this(messageBuilderFactory, logger, -1); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 17.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/PredicatesTest.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 22 17:15:24 UTC 2024 - 32.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/OptionalTest.java
} public void testOf() { assertEquals("training", Optional.of("training").get()); } public void testOf_null() { assertThrows(NullPointerException.class, () -> Optional.of(null)); } public void testFromNullable() { Optional<String> optionalName = Optional.fromNullable("bob"); assertEquals("bob", optionalName.get()); } public void testFromNullable_null() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Sep 17 18:14:12 UTC 2024 - 10.5K bytes - Viewed (0)