- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 1,924 for booleans (0.04 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.java
* @return requires a project */ boolean projectRequired() default true; /** * if the Mojo uses the Maven project and its subprojects. * @return uses the Maven project and its subprojects */ boolean aggregator() default false; /** * does this Mojo need to be online to be executed? * @return need to be online */ boolean onlineRequired() default false; /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Aug 29 18:21:40 UTC 2024 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/PrefixQueryCommand.java
public PrefixQueryCommand() { super(); } private static final Logger logger = LogManager.getLogger(PrefixQueryCommand.class); /** Flag to convert wildcard to lowercase. */ protected boolean lowercaseWildcard = true; @Override protected String getQueryClassName() { return PrefixQuery.class.getSimpleName(); } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.1K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Call.kt
fun cancel() /** * Returns true if this call has been either [executed][execute] or [enqueued][enqueue]. It is an * error to execute a call more than once. */ fun isExecuted(): Boolean fun isCanceled(): Boolean /** * Returns a timeout that spans the entire call: resolving DNS, connecting, writing the request * body, server processing, and reading the response body. If the call requires redirects or
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 3.6K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/base/WhitespaceMatcherBenchmark.java
public static final CharMatcher OLD_WHITESPACE = new CharMatcher() { @Override public boolean matches(char c) { return OLD_WHITESPACE_TABLE.charAt(c % 79) == c; } }; @Param private boolean useNew; @Param({"20", "50", "80"}) private int percentMatching; private String teststring; private CharMatcher matcher;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 3.9K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/DummyProxy.java
Set<Class<? super T>> allInterfaceClasses = interfaceType.getTypes().interfaces().rawTypes(); for (Class<? super T> itf : allInterfaceClasses) { Iterator<Class<?>> iterator = interfaceClasses.iterator(); boolean addToSet = true; while (iterator.hasNext()) { Class<?> current = iterator.next(); if (current == itf || itf.isAssignableFrom(current)) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 22:10:29 UTC 2025 - 4.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/CrawlTestBase.java
Boolean isRunning = false; int count = 0; while (count < 300 && !isRunning) { // Wait until the crawler starts ThreadUtil.sleep(500); count++; final Map<String, Object> scheduler = getSchedulerItem(namePrefix); assertTrue(scheduler.containsKey("running")); isRunning = (Boolean) scheduler.get("running"); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/OkHttpClientTestRule.kt
private var uncaughtException: Throwable? = null private lateinit var testName: String private var defaultUncaughtExceptionHandler: Thread.UncaughtExceptionHandler? = null private var taskQueuesWereIdle: Boolean = false private val connectionListener = RecordingConnectionListener() var logger: Logger? = null var recordEvents = true var recordTaskRunner = false var recordFrames = false
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri May 30 21:28:20 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseContext.java
* @return true if change notifications are enabled */ public boolean isNotificationEnabled() { return notificationEnabled; } /** * Enables or disables directory change notifications * @param notificationEnabled true to enable change notifications */ public void setNotificationEnabled(boolean notificationEnabled) { this.notificationEnabled = notificationEnabled; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/AccessTokenPager.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 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/CharMappingPager.java
private int allRecordCount; /** Total number of pages available. */ 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 navigation. */ private List<Integer> pageNumberList; /** Number of records to display per page. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0)