- Sort Score
- Result 10 results
- Languages All
Results 1121 - 1130 of 6,703 for RETURN (0.06 sec)
-
src/main/java/org/codelibs/fess/util/ResourceUtil.java
if (url != null) { return url; } final FessConfig fessConfig = ComponentUtil.getFessConfig(); return fessConfig.getFesenHttpUrl(); } public static String getAppType() { final String appType = System.getenv(FESS_APP_TYPE); if (StringUtil.isNotBlank(appType)) { return appType; } return StringUtil.EMPTY; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 08:52:32 UTC 2024 - 7.5K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/RepositorySystemSupplier.java
checkClosed(); if (pathProcessor == null) { pathProcessor = createPathProcessor(); } return pathProcessor; } protected PathProcessor createPathProcessor() { return new DefaultPathProcessor(); } private ChecksumProcessor checksumProcessor; public final ChecksumProcessor getChecksumProcessor() {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 45.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/MultimapsCollectionTest.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 28.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/cache/CacheAction.java
saveError(messages -> messages.addErrorsDocidNotFound(GLOBAL, form.docId)); return redirect(ErrorAction.class); } final String content = viewHelper.createCacheContent(doc, form.hq); if (content == null) { saveError(messages -> messages.addErrorsDocidNotFound(GLOBAL, form.docId)); return redirect(ErrorAction.class); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.4K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/collect/ImmutableListCreationBenchmark.java
} return dummy; } @Benchmark int copyPreSizedArrayList(int reps) { int size = this.size; int tmp = 0; for (int rep = 0; rep < reps; rep++) { List<Object> builder = Lists.newArrayListWithCapacity(size); for (int i = 0; i < size; i++) { builder.add(OBJECT); } tmp += ImmutableList.copyOf(builder).size(); } return tmp; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 2.3K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/AbstractCollectionTester.java
@Override protected Collection<E> actualContents() { return collection; } // TODO: dispose of this once collection is encapsulated. @Override @CanIgnoreReturnValue protected Collection<E> resetContainer(Collection<E> newContents) { collection = super.resetContainer(newContents); return collection; } /** @see AbstractContainerTester#resetContainer() */
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 24 20:12:35 UTC 2024 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/SingleValueIterator.java
* * @param <E> * 要素の型 * @param value * 反復子が返す唯一の値 * @return {@link SingleValueIterator}をラップした{@link Iterable} */ public static <E> Iterable<E> iterable(final E value) { return () -> new SingleValueIterator<>(value); } /** * インスタンスを構築します。 * * @param value * 反復子が返す唯一の値 */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.2K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/collect/ImmutableListCreationBenchmark.java
} return dummy; } @Benchmark int copyPreSizedArrayList(int reps) { int size = this.size; int tmp = 0; for (int rep = 0; rep < reps; rep++) { List<Object> builder = Lists.newArrayListWithCapacity(size); for (int i = 0; i < size; i++) { builder.add(OBJECT); } tmp += ImmutableList.copyOf(builder).size(); } return tmp; }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/DfsReferralDataInternal.java
/** * Not exactly sure what that is all about, certainly legacy stuff * * @return resolveHashes */ boolean isResolveHashes (); /** * @return whether this refrral needs to be resolved further */ boolean isIntermediate (); /** * @param next * @return new referral, combining a chain of referrals */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.4K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Execution.java
} // -- void addGoal( String ) /** * Get configuration to pass to the goals. * * @return Object */ public Object getConfiguration() { return this.configuration; } // -- Object getConfiguration() /** * Method getGoals. * * @return List */ public java.util.List<String> getGoals() { if (this.goals == null) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0)