- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,648 for provides (0.05 sec)
-
api/maven-api-di/src/main/java/org/apache/maven/api/di/Provides.java
* <p> * Example usage: * <pre> * public class Providers { * {@literal @}Provides * {@literal @}Singleton * public static Configuration provideConfiguration() { * return Configuration.load(); * } * } * </pre> * * @since 4.0.0 */ @Target(METHOD) @Retention(RUNTIME) @Documented
Registered: 2025-09-07 03:35 - Last Modified: 2025-01-30 23:28 - 1.8K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ExtensibleEnumProvider.java
* base for all providers that register such extensions. * <p> * Implementations of this interface are discovered through the Java ServiceLoader mechanism. * Each implementation must be registered in a {@code META-INF/services/} file corresponding * to the specific provider interface being implemented. * <p> * Example implementation for a custom language provider: * <pre>Registered: 2025-09-07 03:35 - Last Modified: 2025-04-03 13:33 - 2.8K bytes - Viewed (0) -
apache-maven/src/assembly/maven/conf/toolchains.xml
Registered: 2025-09-07 03:35 - Last Modified: 2024-08-22 14:47 - 3.6K bytes - Viewed (0) -
api/maven-api-annotations/src/main/java/org/apache/maven/api/annotations/Provider.java
/** * A type implemented by, or extended by maven itself. * Maven provides implementations of those types and may inject them in plugins. * <p> * A type can be marked {@link Consumer} or {@link Provider} but not both. A type is assumed to be * {@link Consumer} if it is not marked either {@link Consumer} or {@link Provider}. * <p> * A package can be marked {@link Provider}. In this case, all types in the package are consideredRegistered: 2025-09-07 03:35 - Last Modified: 2024-12-10 21:43 - 1.7K bytes - Viewed (0) -
apache-maven/src/assembly/maven/conf/settings.xml
<enabled>false</enabled> </snapshots> </pluginRepository> </pluginRepositories> <!-- profiles | This is a list of profiles which can be activated in a variety of ways, and which can modify | the build process. Profiles provided in the settings.xml are intended to provide local machine- | specific paths and repository locations which allow the build to work in the local environment. |
Registered: 2025-09-07 03:35 - Last Modified: 2025-01-22 07:44 - 11.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/java/JavaToolchainFactory.java
JavaToolchainImpl jtc = new DefaultJavaToolChain(model, logger); // populate the provides section Properties provides = model.getProvides(); for (Entry<Object, Object> provide : provides.entrySet()) { String key = (String) provide.getKey(); String value = (String) provide.getValue(); if (value == null) { throw new MisconfiguredToolchainException(
Registered: 2025-09-07 03:35 - Last Modified: 2025-06-06 14:28 - 4.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/RequirementMatcherFactory.java
private String provides; private ExactMatcher(String provides) { this.provides = provides; } @Override public boolean matches(String requirement) { return provides.equalsIgnoreCase(requirement); } @Override public String toString() { return provides; } }Registered: 2025-09-07 03:35 - Last Modified: 2025-02-12 13:13 - 2.7K bytes - Viewed (0) -
.idea/inspectionProfiles/Gradle.xml
</replaceConfiguration>
Registered: 2025-09-10 11:36 - Last Modified: 2024-06-26 21:49 - 15.4K bytes - Viewed (0) -
docs/en/docs/benchmarks.md
* **Starlette**: * Will have the next best performance, after Uvicorn. In fact, Starlette uses Uvicorn to run. So, it probably can only get "slower" than Uvicorn by having to execute more code. * But it provides you the tools to build simple web applications, with routing based on paths, etc. * If you are comparing Starlette, compare it against Sanic, Flask, Django, etc. Web frameworks (or microframeworks). * **FastAPI**:Registered: 2025-09-07 07:19 - Last Modified: 2025-08-31 09:15 - 3.5K bytes - Viewed (0) -
docs/en/docs/tutorial/security/index.md
Integrating other authentication/authorization providers like Google, Facebook, X (Twitter), GitHub, etc. is also possible and relatively easy. The most complex problem is building an authentication/authorization provider like those, but **FastAPI** gives you the tools to do it easily, while doing the heavy lifting for you. /// ## **FastAPI** utilities { #fastapi-utilities }Registered: 2025-09-07 07:19 - Last Modified: 2025-08-31 10:49 - 4.4K bytes - Viewed (0)