- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,586 for boolean (0.04 sec)
-
android/guava/src/com/google/common/primitives/Booleans.java
* * @param a the first {@code boolean} to compare * @param b the second {@code boolean} to compare * @return a positive number if only {@code a} is {@code true}, a negative number if only {@code * b} is true, or zero if {@code a == b} */ @InlineMe(replacement = "Boolean.compare(a, b)") public static int compare(boolean a, boolean b) { return Boolean.compare(a, b); } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 20.4K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Booleans.java
* * @param a the first {@code boolean} to compare * @param b the second {@code boolean} to compare * @return a positive number if only {@code a} is {@code true}, a negative number if only {@code * b} is true, or zero if {@code a == b} */ @InlineMe(replacement = "Boolean.compare(a, b)") public static int compare(boolean a, boolean b) { return Boolean.compare(a, b); } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 20.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/BooleanConversionUtil.java
return Boolean.FALSE; } else { return Boolean.TRUE; } } else { return Boolean.TRUE; } } /** * {@literal boolean}に変換します。 * * @param o * 変換元のオブジェクト * @return 変換された{@literal boolean} */ public static boolean toPrimitiveBoolean(final Object o) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.1K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/KotlinSourceQueries.kt
mapOf( "java.lang.Object" to "Any", "java.lang.String" to "String", "java.lang.Character" to "Char", "char" to "Char", "java.lang.Boolean" to "Boolean", "boolean" to "Boolean", "java.lang.Byte" to "Byte", "byte" to "Byte", "java.lang.Short" to "Short", "short" to "Short", "java.lang.Integer" to "Int",
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Jul 04 08:05:22 UTC 2024 - 11.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/OperatingSystemProfileActivator.java
public boolean canDetermineActivation(Profile profile) { Activation activation = profile.getActivation(); return activation != null && activation.getOs() != null; } public boolean isActive(Profile profile) { Activation activation = profile.getActivation(); ActivationOS os = activation.getOs(); boolean result = ensureAtLeastOneNonNull(os);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.7K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/DelegatingSSLSocket.kt
delegate!!.startHandshake() } override fun setUseClientMode(mode: Boolean) { delegate!!.useClientMode = mode } override fun getUseClientMode(): Boolean { return delegate!!.useClientMode } override fun setNeedClientAuth(need: Boolean) { delegate!!.needClientAuth = need } override fun setWantClientAuth(want: Boolean) { delegate!!.wantClientAuth = want }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 7.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionBean.java
private Boolean explain; private Float minScore; private String preference; private String routing; private String searchType; private long timeoutInMillis = -1; private Boolean version; private Boolean seqNoAndPrimaryTerm = Boolean.TRUE; private int terminateAfter = 0;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 17.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/QueryResponseList.java
protected int allPageCount; protected boolean existNextPage; protected boolean existPrevPage; protected long currentStartRecordNumber; protected long currentEndRecordNumber; protected List<String> pageNumberList; protected String searchQuery; protected long execTime; protected FacetResponse facetResponse; protected boolean partialResults = false;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 8.9K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/http2/PushObserver.kt
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 3.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/BooleansTest.java
testRotate(new boolean[] {true}, 1, new boolean[] {true}); testRotate(new boolean[] {true}, 2, new boolean[] {true}); testRotate(new boolean[] {true, false}, -3, new boolean[] {false, true}); testRotate(new boolean[] {true, false}, -1, new boolean[] {false, true}); testRotate(new boolean[] {true, false}, -2, new boolean[] {true, false});
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 02:56:12 UTC 2024 - 24.8K bytes - Viewed (0)