Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,228 for provides (0.2 sec)

  1. api/maven-api-di/src/main/java/org/apache/maven/api/di/Provides.java

    import static java.lang.annotation.ElementType.METHOD;
    import static java.lang.annotation.RetentionPolicy.RUNTIME;
    
    /**
     * Can be used on a static method to provide a bean.
     */
    @Target(METHOD)
    @Retention(RUNTIME)
    @Documented
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Feb 05 09:45:47 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  2. api/maven-api-meta/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 considered
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 1.7K bytes
    - Viewed (0)
  3. maven-core/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(
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 4K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/ApiRunner.java

                }
            };
        }
    
        @Provides
        static RepositorySystemSupplier newRepositorySystemSupplier() {
            return new RepositorySystemSupplier();
        }
    
        @Provides
        static RepositorySystem newRepositorySystem(RepositorySystemSupplier repositorySystemSupplier) {
            return repositorySystemSupplier.getRepositorySystem();
        }
    
        @Provides
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 17.1K bytes
    - Viewed (0)
  5. apache-maven/src/assembly/maven/conf/toolchains.xml

       |
       | General example
    
      <toolchain>
        <type/>
        <provides>
          <version>1.0</version>
        </provides>
        <configuration/>
      </toolchain>
    
       | JDK examples
    
      <toolchain>
        <type>jdk</type>
        <provides>
          <version>1.5</version>
          <vendor>sun</vendor>
        </provides>
        <configuration>
          <jdkHome>/path/to/jdk/1.5</jdkHome>
        </configuration>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Thu Dec 24 18:09:10 GMT 2020
    - 3.5K bytes
    - Viewed (0)
  6. architecture-standards/0004-use-a-platform-architecture.md

    This platform provides specific support for Swift, C++ and C.
    
    ### Cross-cutting architecture modules
    
    There are some additional cross-cutting architecture modules that aren't themselves platforms:
    
    ### Enterprise integration
    
    Provides cross-cutting integration with Gradle's commercial product.
    
    ### IDE integration
    
    Provides cross-cutting integration with IDEs and other tooling.
    
    Plain Text
    - Registered: Wed Feb 14 11:36:15 GMT 2024
    - Last Modified: Wed Feb 07 00:56:13 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  7. architecture/standards/0004-use-a-platform-architecture.md

    This platform provides specific support for Swift, C++ and C.
    
    ### Cross-cutting architecture modules
    
    There are some additional cross-cutting architecture modules that aren't themselves platforms:
    
    #### Enterprise integration
    
    Provides cross-cutting integration with Gradle's commercial product.
    
    #### IDE integration
    
    Provides cross-cutting integration with IDEs and other tooling.
    
    Plain Text
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Sun Feb 25 22:19:29 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  8. 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.
       |
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Jun 19 15:06:01 GMT 2023
    - 11K bytes
    - Viewed (0)
  9. 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**:
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  10. maven-core/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;
            }
        }
    
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 2.7K bytes
    - Viewed (0)
Back to top