- Sort Score
- Result 10 results
- Languages All
Results 771 - 780 of 5,353 for Return (0.04 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/pathmap/AdminPathmapAction.java
case CrudMode.CREATE: return OptionalEntity.of(new PathMapping()).map(entity -> { entity.setCreatedBy(username); entity.setCreatedTime(currentTime); return entity; }); case CrudMode.EDIT: if (form instanceof EditForm) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessEnv.java
return get(FessEnv.lasta_di_SMART_DEPLOY_MODE); } public String getDevelopmentHere() { return get(FessEnv.DEVELOPMENT_HERE); } public boolean isDevelopmentHere() { return is(FessEnv.DEVELOPMENT_HERE); } public String getEnvironmentTitle() { return get(FessEnv.ENVIRONMENT_TITLE); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ForwardingSetTest.java
@Override protected Set<T> delegate() { return backingSet; } @Override public boolean equals(@Nullable Object object) { return standardEquals(object); } @Override public int hashCode() { return standardHashCode(); } @Override public boolean addAll(Collection<? extends T> collection) { return standardAddAll(collection); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthentication.java
*/ } return true; } return false; } /** * Check whether the password hashes are externally supplied. * * @return whether the hashes are externally supplied */ public boolean areHashesExternal() { return this.hashesExternal; } /** * {@inheritDoc} *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.3K bytes - Viewed (0) -
src/cmd/asm/internal/arch/arch.go
return archArm() case "arm64": return archArm64() case "loong64": return archLoong64(&loong64.Linkloong64) case "mips": return archMips(&mips.Linkmips) case "mipsle": return archMips(&mips.Linkmipsle) case "mips64": return archMips64(&mips.Linkmips64) case "mips64le": return archMips64(&mips.Linkmips64le) case "ppc64": return archPPC64(&ppc64.Linkppc64) case "ppc64le":
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Nov 07 02:20:14 UTC 2024 - 21.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RobotsTxt.java
* Gets the crawl delay for this directive. * @return the crawl delay in seconds */ public int getCrawlDelay() { return crawlDelay; } /** * Gets the user agent for this directive. * @return the user agent string */ public String getUserAgent() { return userAgent; } /**
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/LocaleUtil.java
} } return locale; } private static Supplier<Locale> defaultLocaleSupplier; /** * Returns the default locale. * * @return the default locale */ public static Locale getDefault() { if (defaultLocaleSupplier != null) { return defaultLocaleSupplier.get(); } return Locale.ENGLISH; } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/compression/DefaultCompressionService.java
case COMPRESSION_NONE: return "None"; case COMPRESSION_LZ77: return "LZ77"; case COMPRESSION_LZ77_HUFFMAN: return "LZ77+Huffman"; case COMPRESSION_LZNT1: return "LZNT1"; case COMPRESSION_PATTERN_V1: return "Pattern_V1"; default: return "Unknown(0x" + Integer.toHexString(algorithm) + ")"; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.2K bytes - Viewed (0) -
android/guava/src/com/google/common/reflect/TypeResolver.java
} return super.captureAsTypeVariable(combined.toArray(new Type[0])); } }; } private WildcardCapturer notForTypeVariable() { return new WildcardCapturer(id); } private @Nullable Type captureNullable(@Nullable Type type) { if (type == null) { return null; } return capture(type); } } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 14:03:14 UTC 2025 - 24.2K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/io/CharStreamsCopyBenchmark.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 3.2K bytes - Viewed (0)