- Sort Score
- Result 10 results
- Languages All
Results 1361 - 1370 of 2,048 for BOOLEAN (0.03 sec)
-
src/main/java/jcifs/netbios/Name.java
} } /** * Checks if this represents an unknown address. * * @return whether this is the unknown address */ public boolean isUnknown() { return "0.0.0.0".equals(this.name) && this.hexCode == 0 && this.scope == null; } int writeWireFormat(final byte[] dst, final int dstIndex) { // write 0x20 in first byteRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Count.java
public int getAndSet(int newValue) { int result = value; value = newValue; return result; } @Override public int hashCode() { return value; } @Override public boolean equals(@Nullable Object obj) { return obj instanceof Count && ((Count) obj).value == value; } @Override public String toString() { return Integer.toString(value); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 1.6K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/BaseComparable.java
private final String s; public BaseComparable(String s) { this.s = s; } @Override public int hashCode() { // delegate to 's' return s.hashCode(); } @Override public boolean equals(@Nullable Object other) { if (other == null) { return false; } else if (other instanceof BaseComparable) { return s.equals(((BaseComparable) other).s); } else { return false; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 1.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/TransformedIterator.java
this.backingIterator = checkNotNull(backingIterator); } @ParametricNullness abstract T transform(@ParametricNullness F from); @Override public final boolean hasNext() { return backingIterator.hasNext(); } @Override @ParametricNullness public final T next() { return transform(backingIterator.next()); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 1.7K bytes - Viewed (0) -
guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java
} static class OverridesEquals { @SuppressWarnings("EqualsHashCode") @Override public boolean equals(@Nullable Object o) { return true; } } static class DoesNotOverrideEquals { public boolean equals(Object a, Object b) { return true; } } public void testEqualsMethod() { shouldPass(new OverridesEquals());Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 47.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/InputStreamThreadTest.java
thread.start(); Thread.sleep(50); String output1 = thread.getOutput(); boolean contains1 = thread.contains("concurrent1"); thread.join(1000); String output2 = thread.getOutput(); boolean contains2 = thread.contains("concurrent1"); assertNotNull(output1); assertNotNull(output2); assertTrue(contains2);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.7K bytes - Viewed (0) -
guava/src/com/google/common/collect/TreeTraverser.java
PreOrderIterator(T root) { this.stack = new ArrayDeque<>(); stack.addLast(singletonIterator(checkNotNull(root))); } @Override public boolean hasNext() { return !stack.isEmpty(); } @Override public T next() { Iterator<T> itr = stack.getLast(); // throws NSEE if empty T result = checkNotNull(itr.next());Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/NameServiceClient.java
* @return found addresses * @throws UnknownHostException if the hostname cannot be resolved */ Address[] getAllByName(String hostname, boolean possibleNTDomainOrWorkgroup) throws UnknownHostException; /** * Lookup <code>hostname</code> and return it's <code>UniAddress</code>. If theRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RobotsTxt.java
* @return true if access is allowed, false if access is disallowed by robots.txt rules. * Returns true if no matching directive is found for the user agent. */ public boolean allows(final String path, final String userAgent) { final Directive directive = getMatchedDirective(userAgent); if (directive == null) { return true; }Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 10K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/features/TesterRequirements.java
} public final Set<Feature<?>> getPresentFeatures() { return presentFeatures; } public final Set<Feature<?>> getAbsentFeatures() { return absentFeatures; } @Override public boolean equals(@Nullable Object object) { if (object == this) { return true; } if (object instanceof TesterRequirements) { TesterRequirements that = (TesterRequirements) object;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 2.6K bytes - Viewed (0)