- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 518 for Otherwise (0.04 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealCall.kt
* and response body streams; otherwise resources may be leaked. * * This method is safe to be called concurrently, but provides limited guarantees. If a transport * layer connection has been established (such as a HTTP/2 stream) that is terminated. Otherwise * if a socket connection is being established, that is terminated. */ override fun cancel() {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 11:30:11 UTC 2025 - 17.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaWorkRequest.java
*/ public RdmaMemoryRegion getMemoryRegion() { return memoryRegion; } /** * Check if request is completed * * @return true if completed, false otherwise */ public boolean isCompleted() { return completed; } /** * Mark request as completed */ public void markCompleted() { this.completed = true; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ComponentUtil.java
* Checks if query parser is available. * @return True if query parser is available, false otherwise. */ public static boolean hasQueryParser() { return hasComponent(QUERY_PARSER); } /** * Checks if view helper is available. * @return True if view helper is available, false otherwise. */ public static boolean hasViewHelper() { return hasComponent(VIEW_HELPER);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 28.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcMessage.java
* The result code of the DCERPC operation */ protected int result = 0; /** * Checks if a specific flag is set * @param flag the flag to check * @return true if the flag is set, false otherwise */ public boolean isFlagSet(final int flag) { return (flags & flag) == flag; } /** * Unsets a specific flag * @param flag the flag to unset */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/chain/CommandChain.java
* @param finished True if the process has finished, false otherwise. */ public void setFinished(final boolean finished) { this.finished = finished; } /** * Checks if the process has been terminated due to timeout. * @return True if the process was terminated, false otherwise. */ public boolean isTeminated() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Iterables.java
* for comparisons. This class is not being deprecated, but we gently encourage you to migrate to * streams. * * <p><i>Performance notes:</i> Unless otherwise noted, all of the iterables produced in this class * are <i>lazy</i>, which means that their iterators only advance the backing iteration when * absolutely necessary. * * <p>See the Guava User Guide article on <a href=
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 43.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/SLinkedList.java
* * @return true if the list is empty, false otherwise */ public boolean isEmpty() { return size == 0; } /** * Checks if an element is contained in the list. * * @param element the element * @return true if the element is contained in the list, false otherwise */ public boolean contains(final E element) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 10.5K bytes - Viewed (0) -
LICENSES/vendor/github.com/beorn7/perks/LICENSE
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Fri May 08 04:49:00 UTC 2020 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsItem.java
* * @return true if the item has been updated, false otherwise. */ public boolean isUpdated() { return newInput != null; } /** * Checks if the item has been marked for deletion. * * @return true if the item is marked for deletion, false otherwise. */ public boolean isDeleted() { return isUpdated() && newInput.length() == 0;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java
* * @param id the unique identifier of the duplicate host configuration * @return an OptionalEntity containing the DuplicateHost if found, empty otherwise * @throws IllegalArgumentException if id is null or empty */ public OptionalEntity<DuplicateHost> getDuplicateHost(final String id) { return duplicateHostBhv.selectByPK(id); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0)