- Sort Score
- Result 10 results
- Languages All
Results 3931 - 3940 of 6,918 for RETURN (0.04 sec)
-
src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java
stemmerOvberridePager.setPageNumberList(stemmerOvberrideList.createPageNumberList()); return (List<StemmerOverrideItem>) stemmerOvberrideList; }).orElse(Collections.emptyList()); } public OptionalEntity<StemmerOverrideFile> getStemmerOverrideFile(final String dictId) { return dictionaryManager.getDictionaryFile(dictId).filter(StemmerOverrideFile.class::isInstance)
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingConcurrentMap.java
@CheckForNull public V putIfAbsent(K key, V value) { return delegate().putIfAbsent(key, value); } @CanIgnoreReturnValue @Override public boolean remove(@CheckForNull Object key, @CheckForNull Object value) { return delegate().remove(key, value); } @CanIgnoreReturnValue @Override @CheckForNull public V replace(K key, V value) { return delegate().replace(key, value); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 29 19:42:21 UTC 2021 - 2.5K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/collect/ComparatorDelegationOverheadBenchmark.java
sort(copy); tmp += copy[0]; } return tmp; } @Benchmark int arraysSortOrderingNatural(int reps) { int tmp = 0; for (int i = 0; i < reps; i++) { Integer[] copy = inputArrays[i & 0xFF].clone(); sort(copy, Ordering.natural()); tmp += copy[0]; } return tmp; } private static final Comparator<Integer> NATURAL_INTEGER =
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 2.5K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/math/DoubleMathRoundingBenchmark.java
int j = i & ARRAY_MASK; tmp += DoubleMath.roundToInt(doubleInIntRange[j], mode); } return tmp; } @Benchmark long roundToLong(int reps) { long tmp = 0; for (int i = 0; i < reps; i++) { int j = i & ARRAY_MASK; tmp += DoubleMath.roundToLong(doubleInLongRange[j], mode); } return tmp; } @Benchmark int roundToBigInteger(int reps) { int tmp = 0;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/Handler.java
@Override protected int getDefaultPort () { return SmbConstants.DEFAULT_PORT; } @Override public URLConnection openConnection ( URL u ) throws IOException { if ( log.isDebugEnabled() ) { log.debug("Opening file " + u); } return new SmbFile(u, getTransportContext()); } /** * @return */ private CIFSContext getTransportContext () {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jun 06 09:14:24 UTC 2020 - 2.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/settings/MavenSettingsBuilder.java
/** * @return a <code>Settings</code> object from the user settings file. * @throws IOException if any * @throws XmlPullParserException if any */ Settings buildSettings() throws IOException, XmlPullParserException; /** * @param useCachedSettings if true, doesn't reload the user settings * @return a <code>Settings</code> object from the user settings file.
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/mvnenc/EncryptOptions.java
/** * Should the operation be forced (ie overwrite existing config, if any). * * @return an {@link Optional} containing the boolean value {@code true} if specified, or empty */ Optional<Boolean> force(); /** * Should imply "yes" to all questions. * * @return an {@link Optional} containing the boolean value {@code true} if specified, or empty */ Optional<Boolean> yes();
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Mon Oct 14 19:57:22 UTC 2024 - 2.4K bytes - Viewed (0) -
docs/en/docs/advanced/response-headers.md
You can also declare the `Response` parameter in dependencies, and set headers (and cookies) in them. ## Return a `Response` directly You can also add headers when you return a `Response` directly. Create a response as described in [Return a Response Directly](response-directly.md){.internal-link target=_blank} and pass the headers as an additional parameter: ```Python hl_lines="10-12"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 2.2K bytes - Viewed (0) -
compat/maven-settings-builder/src/main/java/org/apache/maven/settings/crypto/DefaultSettingsDecryptionRequest.java
} return servers; } @Override public DefaultSettingsDecryptionRequest setServers(List<Server> servers) { this.servers = servers; return this; } @Override public List<Proxy> getProxies() { if (proxies == null) { proxies = new ArrayList<>(); } return proxies; } @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.9K bytes - Viewed (0) -
tests/test_additional_responses_router.py
router = APIRouter() @router.get("/a", responses={501: {"description": "Error 1"}}) async def a(): return "a" @router.get( "/b", responses={ 502: {"description": "Error 2"}, "4XX": {"description": "Error with range, upper"}, }, ) async def b(): return "b" @router.get( "/c", responses={ "400": {"description": "Error with str"},
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jun 30 18:25:16 UTC 2023 - 5.1K bytes - Viewed (0)