- Sort Score
- Result 10 results
- Languages All
Results 1601 - 1610 of 2,077 for boolean (0.04 sec)
-
src/main/java/org/codelibs/core/collection/IndexedIterator.java
public IndexedIterator(final Iterator<T> iterator) { assertArgumentNotNull("iterator", iterator); this.iterator = iterator; this.index = 0; } @Override public boolean hasNext() { return iterator.hasNext(); } @Override public Indexed<T> next() { return new Indexed<>(iterator.next(), index++); } @Override
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/sql/PreparedStatementUtil.java
* @return Whether the result is a {@link ResultSet}. * @throws SQLRuntimeException * If a {@link SQLException} occurs. * @see PreparedStatement#execute() */ public static boolean execute(final PreparedStatement ps) throws SQLRuntimeException { assertArgumentNotNull("ps", ps); try { return ps.execute(); } catch (final SQLException ex) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.9K bytes - Viewed (0) -
docs/recipes.md
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 17:01:12 UTC 2025 - 47.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsScheduledJobCB.java
return ScheduledJobDbm.getInstance(); } @Override public String asTableDbName() { return "scheduled_job"; } @Override public boolean hasSpecifiedColumn() { return _specification != null; } @Override public ConditionQuery localCQ() { return doGetConditionQuery(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/bs/BsWebAuthenticationCB.java
return WebAuthenticationDbm.getInstance(); } @Override public String asTableDbName() { return "web_authentication"; } @Override public boolean hasSpecifiedColumn() { return _specification != null; } @Override public ConditionQuery localCQ() { return doGetConditionQuery(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7.6K bytes - Viewed (0) -
guava/src/com/google/common/hash/ChecksumHashFunction.java
private static final @Nullable MethodHandle UPDATE_BB = updateByteBuffer(); @IgnoreJRERequirement // https://github.com/mojohaus/animal-sniffer/issues/67 static boolean updateByteBuffer(Checksum cs, ByteBuffer bb) { if (UPDATE_BB != null) { try { UPDATE_BB.invokeExact(cs, bb); } catch (Throwable e) { // `update` has no `throws` clause.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2RdmaTransformCapabilitiesContext.java
} /** * Check if RDMA is supported based on this context * * @return true if RDMA Transform V1 is supported */ public boolean isRdmaSupported() { return transformCount > 0 && rdmaTransformId == 0x0001; } /** * Get the transform count * * @return number of transforms */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 4.4K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactDeployerRequest.java
} @Override public int getRetryFailedDeploymentCount() { return retryFailedDeploymentCount; } @Override public boolean equals(Object o) { return o instanceof DefaultArtifactDeployerRequest that && retryFailedDeploymentCount == that.retryFailedDeploymentCount
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 5.8K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolverRequest.java
@Nullable @Override public List<RemoteRepository> getRepositories() { return repositories; } @Override public boolean equals(Object o) { return o instanceof DefaultArtifactResolverRequest that && Objects.equals(coordinates, that.coordinates)
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/cbean/bs/BsSearchLogCB.java
public SearchLogDbm asDBMeta() { return SearchLogDbm.getInstance(); } @Override public String asTableDbName() { return "search_log"; } @Override public boolean hasSpecifiedColumn() { return _specification != null; } @Override public ConditionQuery localCQ() { return doGetConditionQuery(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 8K bytes - Viewed (0)