- Sort Score
- Result 10 results
- Languages All
Results 301 - 310 of 1,786 for Booleans (0.04 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/util/TextUtil.java
return new TextNormalizeContext(reader); } private static boolean isLastSpaceChar(final StringBuilder buf) { if (buf.length() == 0) { return false; } return buf.charAt(buf.length() - 1) == ' '; } private static boolean removeLastDuplication(final StringBuilder buf, final int size, final boolean isSpace, final Set<String> termCache) {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Nov 22 13:28:22 UTC 2025 - 12K bytes - Viewed (0) -
android/guava/src/com/google/common/net/PercentEscaper.java
/** If true we should convert space to the {@code +} character. */ private final boolean plusForSpace; /** * An array of flags where for any {@code char c} if {@code safeOctets[c]} is true then {@code c} * should remain unmodified in the output. If {@code c >= safeOctets.length} then it should be * escaped. */ private final boolean[] safeOctets; /**Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Dec 28 01:26:26 UTC 2024 - 8.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java
} /** * Retrieves a setting value as a boolean. * @param key The key of the setting. * @param defaultValue The default value if the setting is not found. * @return The setting value as a boolean. */ public boolean getAsBoolean(final String key, final boolean defaultValue) { final Object obj = get(key); final boolean value; if (obj == null) {Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 20.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java
/** * Total number of pages. */ private int allPageCount; /** * Flag indicating if a previous page exists. */ private boolean existPrePage; /** * Flag indicating if a next page exists. */ private boolean existNextPage; /** * List of page numbers for pagination. */ private List<Integer> pageNumberList; /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.1K bytes - Viewed (0) -
guava/src/com/google/common/graph/AbstractBaseGraph.java
} @Override public boolean isDirected() { return AbstractBaseGraph.this.isDirected(); } @Override public boolean allowsParallelEdges() { return false; // Graph doesn't allow parallel edges } @Override public boolean allowsSelfLoops() { return AbstractBaseGraph.this.allowsSelfLoops(); }Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Oct 07 15:57:03 UTC 2025 - 11.5K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/TreeRangeMap.java
public Set<Range<K>> keySet() { return new Maps.KeySet<Range<K>, V>(SubRangeMapAsMap.this) { @Override public boolean remove(@Nullable Object o) { return SubRangeMapAsMap.this.remove(o) != null; } @Override public boolean retainAll(Collection<?> c) { return removeEntryIf(compose(not(in(c)), Entry::getKey)); } }; }
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Sep 23 17:50:58 UTC 2025 - 22.7K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/AbstractGraphBuilder.java
import com.google.common.base.Optional; /** * A base class for builders that construct graphs with user-defined properties. * * @author James Sexton */ abstract class AbstractGraphBuilder<N> { final boolean directed; boolean allowsSelfLoops = false; ElementOrder<N> nodeOrder = ElementOrder.insertion(); ElementOrder<N> incidentEdgeOrder = ElementOrder.unordered(); Optional<Integer> expectedNodeCount = Optional.absent();
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 1.4K bytes - Viewed (0) -
guava/src/com/google/common/base/CommonMatcher.java
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 1.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/NotifyResponseTest.java
private byte[] rawPayload; // Response interface fields private boolean received = false; private int grantedCredits = 0; private int errorCode = 0; private boolean verifyFailed = false; private boolean error = false; private Exception exception; private Long expiration; public MockNotifyResponse(List<FileNotifyInformation> notifyInfo) {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/TestByteSink.java
private final ImmutableSet<TestOption> options; private boolean outputStreamOpened; private boolean outputStreamClosed; public TestByteSink(TestOption... options) { this.options = ImmutableSet.copyOf(options); } byte[] getBytes() { return bytes.toByteArray(); } @Override public boolean wasStreamOpened() { return outputStreamOpened; } @Override
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 1.9K bytes - Viewed (0)