- Sort Score
- Result 10 results
- Languages All
Results 2761 - 2770 of 7,250 for return (0.09 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/relatedquery/ApiAdminRelatedqueryAction.java
} return entity; }).orElseGet(() -> { throwValidationErrorApi(messages -> messages.addErrorsCrudFailedToCreateInstance(GLOBAL)); return null; }); return asJson(new ApiUpdateResponse().id(relatedQuery.getId()).created(true).status(Status.OK).result()); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 6.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/execution/ProfileActivation.java
} /** * @return Optional active profile identifiers, never {@code null}. */ public Set<String> getOptionalActiveProfileIds() { return getProfileIds(pa -> pa.optional && pa.active); } /** * @return Required inactive profile identifiers, never {@code null}. */ public Set<String> getRequiredInactiveProfileIds() { return getProfileIds(pa -> !pa.optional && !pa.active);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.6K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenSnapshotMetadata.java
return classifier + ':' + extension; } @Override public String getGroupId() { return metadata.getGroupId(); } @Override public String getArtifactId() { return metadata.getArtifactId(); } @Override public String getVersion() { return metadata.getVersion(); } @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycleExecutor.java
public Set<Plugin> getPluginsBoundByDefaultToAllLifecycles(String packaging) { return lifeCyclePluginAnalyzer.getPluginsBoundByDefaultToAllLifecycles(packaging); } // USED BY MAVEN HELP PLUGIN @Deprecated public Map<String, Lifecycle> getPhaseToLifecycleMap() { return defaultLifeCycles.getPhaseToLifecycleMap(); } // Used by m2eclipse
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 7K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/JavaSourceQueries.kt
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jun 28 08:29:24 UTC 2024 - 6.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/TermQueryCommandTest.java
return fessConfig.get(propertyKey); } @Override public BigDecimal getAsDecimal(String propertyKey) { return DfTypeUtil.toBigDecimal(get(propertyKey)); } @Override public Integer getAsInteger(String propertyKey) { return DfTypeUtil.toInteger(get(propertyKey)); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jul 11 08:26:36 UTC 2024 - 9.2K bytes - Viewed (0) -
tests/test_openapi_examples.py
}, "Example Two": { "value": {"data": "Data in Body examples, example2"}, }, }, ), ): return item @app.get("/path_examples/{item_id}") def path_examples( item_id: str = Path( examples=[ "json_schema_item_1", "json_schema_item_2", ],
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Sep 06 15:57:43 UTC 2024 - 17.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/crypto/CachedCipher.java
return transformation; } public void setTransformation(final String transformation) { this.transformation = transformation; } public String getKey() { return key; } public void setKey(final String key) { this.key = key; } public String getCharsetName() { return charsetName; }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 8.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/AbstractIteratorTest.java
// This sample AbstractIterator returns 0 on the first call, 1 on the // second, then signals that it's reached the end of the data Iterator<Integer> iter = new AbstractIterator<Integer>() { private int rep; @Override public Integer computeNext() { switch (rep++) { case 0: return 0; case 1: return 1;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Sep 17 18:14:12 UTC 2024 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/Handler.java
} PROTOCOL_HANDLERS.clear(); Handler.factory = factory; } } /** * Returns the default HTTP port. * * @return An <code>int</code> containing the default HTTP port. */ protected int getDefaultPort() { return DEFAULT_HTTP_PORT; } protected URLConnection openConnection(URL url) throws IOException {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 6.1K bytes - Viewed (0)