- Sort Score
- Result 10 results
- Languages All
Results 1381 - 1390 of 4,820 for IF (0.01 sec)
-
src/main/java/org/codelibs/fess/app/pager/RolePager.java
this.allPageCount = allPageCount; } /** * Checks if a previous page exists. * @return true if a previous page exists, false otherwise. */ public boolean isExistPrePage() { return existPrePage; } /** * Sets whether a previous page exists. * @param existPrePage true if a previous page exists, false otherwise. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/Gradleception.kt
val descriptionParts = mutableListOf<String>() if (bundleGroovyMajor != null) { labels += "Groovy $bundleGroovyMajor.x" idParts += "Groovy$bundleGroovyMajor" descriptionParts += "bundling Groovy $bundleGroovyMajor" } val vendor = buildJvm.vendor.displayName val version = buildJvm.version.major if (buildJvm != BuildToolBuildJvm) {
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu May 01 14:55:05 UTC 2025 - 7.1K bytes - Viewed (0) -
guava/src/com/google/common/base/MoreObjects.java
* instead. * * @return {@code first} if it is non-null; otherwise {@code second} if it is non-null * @throws NullPointerException if both {@code first} and {@code second} are null * @since 18.0 (since 3.0 as {@code Objects.firstNonNull()}). */ public static <T> T firstNonNull(@Nullable T first, @Nullable T second) { if (first != null) { return first; } if (second != null) { return second; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 16.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/go/GoForm.java
* Contains the original search query if redirection fails. */ public String q; /** * Number of results parameter for error page fallback. * Specifies how many results to display if redirection fails. */ public String num; /** * Sort parameter for error page fallback. * Defines the sorting order if redirection fails. */ public String sort;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.9K bytes - Viewed (0) -
android/guava/src/com/google/common/base/CaseFormat.java
@Override String normalizeWord(String word) { return Ascii.toLowerCase(word); } @Override String convert(CaseFormat format, String s) { if (format == LOWER_UNDERSCORE) { return s.replace('-', '_'); } if (format == UPPER_UNDERSCORE) { return Ascii.toUpperCase(s.replace('-', '_')); } return super.convert(format, s); } },
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Apr 15 22:14:00 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmServlet.java
name = (String) e.nextElement(); if (name.startsWith("jcifs.smb1.")) { Config.setProperty(name, config.getInitParameter(name)); } } defaultDomain = Config.getProperty("jcifs.smb1.smb.client.domain"); domainController = Config.getProperty("jcifs.smb1.http.domainController"); if (domainController == null) { domainController = defaultDomain;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
cmd/bucket-versioning.go
vc, err := sys.Get(bucket) if err != nil { logger.CriticalIf(GlobalContext, err) } return vc.PrefixEnabled(prefix) } // Suspended suspended versioning? func (sys *BucketVersioningSys) Suspended(bucket string) bool { vc, err := sys.Get(bucket) if err != nil { logger.CriticalIf(GlobalContext, err) } return vc.Suspended() } // PrefixSuspended returns true if the given prefix matches an excluded prefix
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Oct 25 00:44:15 UTC 2022 - 2.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/storage/StorageClient.java
* @throws CrawlingAccessException if the path format is invalid */ protected String[] parsePath(final String path) { if (StringUtil.isNotEmpty(path)) { final String[] values = path.split("/", 2); if (values.length == 2) { return values; } if (values.length == 1 && StringUtil.isNotEmpty(values[0])) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 17.9K bytes - Viewed (2) -
compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java
* <ul> * <li>If it starts with either "pom." or "project.", the expression is evaluated against the model.</li> * <li>If the value is null, get the value from the context.</li> * <li>If the value is null, but the context contains the expression, don't replace the expression string * with the value, and continue to find other expressions.</li>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 13.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReader.java
*/ public void setLimitDocNumPercentage(final String limitPercentage) { if (logger.isInfoEnabled()) { logger.info("Set document limitPercentage: {}", limitPercentage); } if (limitPercentage.endsWith("%")) { this.limitPercentage = Integer.parseInt(limitPercentage.substring(0, limitPercentage.length() - 1)); } else {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 11K bytes - Viewed (0)