- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 548 for Otherwise (0.78 sec)
-
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) -
LICENSE
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
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Dec 08 07:57:18 UTC 2018 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/WildcardQueryCommand.java
/** * Converts a wildcard value to lowercase if configured to do so. * * @param value The wildcard value to potentially convert * @return The value in lowercase if lowercaseWildcard is true, otherwise the original value */ protected String toLowercaseWildcard(final String value) { if (lowercaseWildcard) { return value.toLowerCase(Locale.ROOT); } return value;
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/ProtwordsPager.java
public void setAllPageCount(final int allPageCount) { this.allPageCount = allPageCount; } /** * Checks if there is a previous page. * @return true if previous page exists, false otherwise */ public boolean isExistPrePage() { return existPrePage; } /** * Sets whether a previous page exists. * @param existPrePage true if previous page exists */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactResolverResult.java
* @return {@code true} if the artifact was resolved, {@code false} otherwise. */ boolean isResolved(); /** * Indicates whether the requested artifact is not present in any of the specified repositories. * * @return {@code true} if the artifact is not present in any repository, {@code false} otherwise. */ boolean isMissing(); }
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 4.7K 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/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) -
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/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) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
* Two CharMappingItem objects are equal if they have the same inputs and output. * * @param obj the object to compare with * @return true if the objects are equal, false otherwise */ @Override public boolean equals(final Object obj) { if (this == obj) { return true; } if (obj == null || getClass() != obj.getClass()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0)