- Sort Score
- Result 10 results
- Languages All
Results 601 - 610 of 2,158 for Booleans (0.08 sec)
-
src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java
int headerStart, length, batchLevel, errorCode, flags2, tid, pid, uid, mid, wordCount, byteCount; boolean useUnicode, received, extendedSecurity; long responseTimeout = 1; int signSeq; boolean verifyFailed; NtlmPasswordAuthentication auth = null; String path; SigningDigest digest = null; ServerMessageBlock response;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 21K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/ShortConversionUtil.java
return Short.valueOf(new SimpleDateFormat(pattern).format(o)); } return (short) ((java.util.Date) o).getTime(); } else if (o instanceof Boolean) { return ((Boolean) o) ? (short) 1 : (short) 0; } else { return toShort(o.toString()); } } private static Short toShort(final String s) { if (StringUtil.isEmpty(s)) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.java
* @return requires a project */ boolean projectRequired() default true; /** * if the Mojo uses the Maven project and its subprojects. * @return uses the Maven project and its subprojects */ boolean aggregator() default false; /** * does this Mojo need to be online to be executed? * @return need to be online */ boolean onlineRequired() default false; /**
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 29 18:21:40 UTC 2024 - 3.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/graph/FilteredProjectDependencyGraph.java
} @Override public List<MavenProject> getDownstreamProjects(MavenProject project, boolean transitive) { return applyFilter(projectDependencyGraph.getDownstreamProjects(project, transitive), transitive, false); } @Override public List<MavenProject> getUpstreamProjects(MavenProject project, boolean transitive) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.3K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLog.java
} } @Override public boolean isDebugEnabled() { return logger.isDebugEnabled(); } @Override public boolean isInfoEnabled() { return logger.isInfoEnabled(); } @Override public boolean isWarnEnabled() { return logger.isWarnEnabled(); } @Override public boolean isErrorEnabled() {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/CloseablesTest.java
// exception. private void setupCloseable(boolean shouldThrow) throws IOException { mockCloseable = mock(Closeable.class); if (shouldThrow) { doThrow(new IOException("This should only appear in the logs. It should not be rethrown.")) .when(mockCloseable) .close(); } } private void doClose(Closeable closeable, boolean swallowException) throws IOException {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
private static final int UTF8_BOM_SIZE = 3; public boolean prunedContent = true; protected Map<String, String> convertUrlMap = new LinkedHashMap<>(); protected FessConfig fessConfig; protected boolean useGoogleOffOn = true; protected Map<String, Boolean> fieldPrunedRuleMap = new HashMap<>();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 42.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/Kerb5Authenticator.java
private String service = DEFAULT_SERVICE; private int userLifetime = GSSCredential.DEFAULT_LIFETIME; private int contextLifetime = GSSContext.DEFAULT_LIFETIME; private boolean canFallback = false; private boolean forceFallback; static { PREFERRED_MECHS.add(new ASN1ObjectIdentifier("1.2.840.113554.1.2.2")); PREFERRED_MECHS.add(new ASN1ObjectIdentifier("1.2.840.48018.1.2.2")); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 13K bytes - Viewed (0) -
guava/src/com/google/common/base/JdkPattern.java
JdkMatcher(Matcher matcher) { this.matcher = Preconditions.checkNotNull(matcher); } @Override public boolean matches() { return matcher.matches(); } @Override public boolean find() { return matcher.find(); } @Override public boolean find(int index) { return matcher.find(index); } @Override public String replaceAll(String replacement) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Feb 09 15:49:48 UTC 2024 - 2.2K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/DirectExecutorService.java
*/ @GuardedBy("lock") private int runningTasks = 0; @GuardedBy("lock") private boolean shutdown = false; @Override public void execute(Runnable command) { startTask(); try { command.run(); } finally { endTask(); } } @Override public boolean isShutdown() { synchronized (lock) { return shutdown; } } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 22:10:29 UTC 2024 - 3.5K bytes - Viewed (0)