Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,836 for provides (0.1 sec)

  1. 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>
    Registered: 2025-05-24 08:56
    - Last Modified: 2024-08-22 14:47
    - 3.6K bytes
    - Viewed (0)
  2. 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.
    
    Registered: 2025-05-28 11:36
    - Last Modified: 2024-02-25 22:19
    - 4.5K bytes
    - Viewed (0)
  3. architecture/platforms.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 platforms:
    
    ### Enterprise integration
    
    Provides cross-cutting integration with Gradle's commercial product.
    
    ### IDE integration
    
    Provides cross-cutting integration with IDEs and other tooling.
    
    Registered: 2025-05-28 11:36
    - Last Modified: 2024-05-02 06:42
    - 5.4K bytes
    - Viewed (0)
  4. 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 considered
    Registered: 2025-05-24 08:56
    - Last Modified: 2024-12-10 21:43
    - 1.7K bytes
    - Viewed (0)
  5. 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-05-24 08:56
    - Last Modified: 2025-01-22 07:44
    - 11.1K bytes
    - Viewed (0)
  6. manifests/helm-profiles/README.md

    # Helm Profiles
    
    This folder provides a variety of "profiles" for helm installation.
    While a user can just explicitly pass this with `--values/-f`.
    
    However, Istio also provides a feature to bundle these with the charts, which is convenient when installing from remote charts.
    For details, see `copy-templates` Makefile target, and `manifests/zzz_profile.yaml`.
    
    Any changes to this folder should have a `make copy-templates` applied afterwards.
    
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-01-10 05:10
    - 708 bytes
    - Viewed (0)
  7. 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-05-25 07:19
    - Last Modified: 2024-04-18 19:53
    - 3.4K bytes
    - Viewed (0)
  8. .idea/inspectionProfiles/Gradle.xml

          </replaceConfiguration>
    Registered: 2025-05-28 11:36
    - Last Modified: 2024-06-26 21:49
    - 15.4K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/security/index.md

    /// tip
    
    Integrating other authentication/authorization providers like Google, Facebook, 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
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-08-06 04:48
    - 4.3K bytes
    - Viewed (0)
  10. manifests/charts/default/files/profile-platform-openshift.yaml

    # The original version of this file is located at /manifests/helm-profiles directory.
    # If you want to make a change in this file, edit the original one and run "make gen".
    
    # The OpenShift profile provides a basic set of settings to run Istio on OpenShift
    cni:
      cniBinDir: /var/lib/cni/bin
      cniConfDir: /etc/cni/multus/net.d
      chained: false
      cniConfFileName: "istio-cni.conf"
      provider: "multus"
    pilot:
      cni:
        enabled: true
    Registered: 2025-05-28 22:53
    - Last Modified: 2024-10-11 15:49
    - 630 bytes
    - Viewed (0)
Back to top