- Sort Score
- Result 10 results
- Languages All
Results 361 - 370 of 2,150 for BOOLEAN (0.08 sec)
-
src/main/java/org/codelibs/fess/app/pager/PathMapPager.java
} public boolean isExistPrePage() { return existPrePage; } public void setExistPrePage(final boolean existPrePage) { this.existPrePage = existPrePage; } public boolean isExistNextPage() { return existNextPage; } public void setExistNextPage(final boolean existNextPage) { this.existNextPage = existNextPage;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/AccessTokenPager.java
this.allPageCount = allPageCount; } public boolean isExistPrePage() { return existPrePage; } public void setExistPrePage(final boolean existPrePage) { this.existPrePage = existPrePage; } public boolean isExistNextPage() { return existNextPage; } public void setExistNextPage(final boolean existNextPage) { this.existNextPage = existNextPage; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/DescendingImmutableSortedSet.java
} @Override ImmutableSortedSet<E> subSetImpl( E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { return forward.subSet(toElement, toInclusive, fromElement, fromInclusive).descendingSet(); } @Override ImmutableSortedSet<E> tailSetImpl(E fromElement, boolean inclusive) { return forward.headSet(fromElement, inclusive).descendingSet(); } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Nov 30 21:54:06 UTC 2023 - 3.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java
protected String outputEncoding = Constants.UTF_8; protected boolean readAsTextIfFailed = false; protected long maxCompressionRatio = 100; protected long maxUncompressionSize = 1000000; protected int initialBufferSize = 10000; protected boolean replaceDuplication = false; protected int[] spaceChars = { '\u0020', '\u00a0', '\u3000', '\ufffd' };
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:41:37 UTC 2024 - 25K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraphEdge.java
public int getDepth() { return depth; } public void setDepth(int depth) { this.depth = depth; } public boolean isResolved() { return resolved; } public void setResolved(boolean resolved) { this.resolved = resolved; } public int getPomOrder() { return pomOrder; }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/BsScheduledJob.java
/** available */ protected Boolean available; /** crawler */ protected Boolean crawler; /** createdBy */ protected String createdBy; /** createdTime */ protected Long createdTime; /** cronExpression */ protected String cronExpression; /** jobLogging */ protected Boolean jobLogging; /** name */ protected String name;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/DefaultArtifactRepository.java
private ArtifactRepositoryPolicy snapshots; private ArtifactRepositoryPolicy releases; private boolean blacklisted; private Authentication authentication; private Proxy proxy; private List<ArtifactRepository> mirroredRepositories = Collections.emptyList(); private boolean blocked; /** * Create a local repository or a test repository. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java
protected final String allRecordCountRelation; protected final long queryTime; protected final boolean partialResults; protected final FacetResponse facetResponse; SearchResult(final List<Map<String, Object>> documentList, final long allRecordCount, final String allRecordCountRelation, final long queryTime, final boolean partialResults, final FacetResponse facetResponse) { this.documentList = documentList;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/ActiveProjectArtifact.java
} /** {@inheritDoc} */ public boolean isSnapshot() { return artifact.isSnapshot(); } /** {@inheritDoc} */ public int compareTo(Artifact a) { return artifact.compareTo(a); } /** {@inheritDoc} */ public void setResolved(boolean resolved) { artifact.setResolved(resolved); } /** {@inheritDoc} */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 9.2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/NullPointerTester.java
@Override boolean isNullable(Invokable<?, ?> invokable) { return containsNullable(invokable.getAnnotations()); } @Override boolean isNullable(Parameter param) { return containsNullable(param.getAnnotations()); } }; abstract boolean isNullable(Invokable<?, ?> invokable); abstract boolean isNullable(Parameter param); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 11 16:13:05 UTC 2024 - 22.6K bytes - Viewed (0)