- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 2,158 for Boolean (0.07 sec)
-
src/main/java/jcifs/smb1/http/NtlmServlet.java
*/ public abstract class NtlmServlet extends HttpServlet { private String defaultDomain; private String domainController; private boolean loadBalance; private boolean enableBasic; private boolean insecureBasic; private String realm; public void init(ServletConfig config) throws ServletException { super.init(config);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 6.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/MetadataResolutionResult.java
} requestedArtifacts.add(artifact); } public Set<Artifact> getRequestedArtifacts() { return requestedArtifacts; } public boolean hasMissingArtifacts() { return missingArtifacts != null && !missingArtifacts.isEmpty(); } public List<Artifact> getMissingArtifacts() {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.3K bytes - Viewed (0) -
api/maven-api-settings/src/main/mdo/settings.mdo
* To allow interpolation of this field, this method lazily parses * the {@link #getActiveString()} value as a boolean and defaults to {@code true} * if not set. * * @return a boolean indicating if this proxy is active */ public boolean isActive() { return (getActiveString() != null) ? Boolean.parseBoolean(getActiveString()) : true; } /** * Returns the port to use for this proxy.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Oct 08 13:46:42 UTC 2024 - 33.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ActivationSettings.java
*/ final boolean active; /** * Should the build continue if the target is not present? */ final boolean optional; ActivationSettings(final boolean active, final boolean optional) { this.active = active; this.optional = optional; } static ActivationSettings of(final boolean active, final boolean optional) { if (optional) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/FlexiblePorterStemFilterFactory.java
public class FlexiblePorterStemFilterFactory extends AbstractTokenFilterFactory { private final boolean step1; private final boolean step2; private final boolean step3; private final boolean step4; private final boolean step5; private final boolean step6;
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/DataStoreCrawlingException.java
private final String url; private final boolean abort; public DataStoreCrawlingException(final String url, final String message, final Exception e) { this(url, message, e, false); } public DataStoreCrawlingException(final String url, final String message, final Exception e, final boolean abort) { super(message, e); this.url = url; this.abort = abort;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.4K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/base/AsciiBenchmark.java
boolean dummy = false; for (int i = 0; i < reps; i++) { dummy ^= Ascii.equalsIgnoreCase(lhs, rhs); } return dummy; } @Benchmark boolean equalsIgnoreCaseJDK(int reps) { // This benchmark has no concept of "noWorkToDo". String lhs = testString; String rhs = testString.toUpperCase(); boolean dummy = false;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/PropertyDescImpl.java
private Field field; private final BeanDesc beanDesc; private Constructor<?> stringConstructor; private Method valueOfMethod; private boolean readable = false; private boolean writable = false; private ParameterizedClassDesc parameterizedClassDesc; /** * {@link PropertyDescImpl}を作成します。 * * @param propertyName
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 15.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/LruHashSet.java
*/ @Override public boolean isEmpty() { return map.isEmpty(); } /** * Returns true if this set contains the specified element. * * @param o * element whose presence in this set is to be tested. * @return true if this set contains the specified element. */ @Override public boolean contains(final Object o) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/AbstractMultiset.java
implements Multiset<E> { // Query Operations @Override public boolean isEmpty() { return entrySet().isEmpty(); } @Override public boolean contains(@CheckForNull Object element) { return count(element) > 0; } // Modification Operations @CanIgnoreReturnValue @Override public final boolean add(@ParametricNullness E element) { add(element, 1); return true; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 01 22:07:10 UTC 2021 - 6K bytes - Viewed (0)