- Sort Score
- Result 10 results
- Languages All
Results 411 - 420 of 1,940 for Booleans (0.58 sec)
-
src/main/java/org/codelibs/fess/app/pager/BadWordPager.java
/** * The total number of pages available. */ private int allPageCount; /** * Whether a previous page exists. */ private boolean existPrePage; /** * Whether a next page exists. */ private boolean existNextPage; /** * The list of page numbers for navigation. */ private List<Integer> pageNumberList; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/LabelTypePager.java
private int allRecordCount; /** The total number of pages. */ private int allPageCount; /** Indicates if a previous page exists. */ private boolean existPrePage; /** Indicates if a next page exists. */ private boolean existNextPage; /** The list of page numbers. */ private List<Integer> pageNumberList; /** The size of a page. */ private int pageSize;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NodeStatusResponse.java
String n; int hexCode; final String scope = queryAddress.hostName.scope; boolean groupName; int ownerNodeType; boolean isBeingDeleted; boolean isInConflict; boolean isActive; boolean isPermanent; int j; boolean addrFound = false; try { for (int i = 0; i < numberOfNames; srcIndex += 18, i++) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/FunctionsTest.java
Function<? super Integer, Boolean> h = Functions.constant(Boolean.TRUE); Function<? super String, Integer> g = new HashCodeFunction(); Function<Float, String> f = Functions.forMap(m, "F"); Function<Float, Boolean> c1 = Functions.compose(Functions.compose(h, g), f); Function<Float, Boolean> c2 = Functions.compose(h, Functions.compose(g, f));
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 15.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbOperationException.java
private final String description; private final ErrorCategory category; private final boolean retryable; ErrorCode(String description, ErrorCategory category, boolean retryable) { this.description = description; this.category = category; this.retryable = retryable; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/CacheStrategy.kt
*/ private fun hasConditions(request: Request): Boolean = request.header("If-Modified-Since") != null || request.header("If-None-Match") != null } companion object { /** Returns true if [response] can be stored to later serve another request. */ fun isCacheable( response: Response, request: Request, ): Boolean {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 12K bytes - Viewed (0) -
src/main/java/jcifs/util/SecureCredentialStorage.java
private static final int PBKDF2_ITERATIONS = 100_000; private final SecureRandom secureRandom = new SecureRandom(); private volatile SecretKey masterKey; private volatile byte[] salt; private volatile boolean destroyed = false; /** * Initialize secure credential storage with a master password * * @param masterPassword the master password for encryption
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/FilteredCollectionsTestUtil.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 13.1K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/impl/BeanDescImplTest.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 13.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Connection.kt
fun newStream( requestHeaders: List<Header>, out: Boolean, ): Http2Stream = newStream(0, requestHeaders, out) @Throws(IOException::class) private fun newStream( associatedStreamId: Int, requestHeaders: List<Header>, out: Boolean, ): Http2Stream { val outFinished = !out val inFinished = false val flushHeaders: Boolean val stream: Http2Stream val streamId: Int
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 31.8K bytes - Viewed (0)