Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 341 for dependency2 (0.08 sec)

  1. README.md

    - Minimal dependencies (only Apache Commons IO)
    
    ## Installation
    
    ### Maven
    
    Add the dependency to your `pom.xml` (replace `x.y.z` with the latest version):
    
    ```xml
    <dependency>
      <groupId>org.codelibs</groupId>
      <artifactId>curl4j</artifactId>
      <version>x.y.z</version>
    </dependency>
    ```
    
    See [Maven Central](https://repo1.maven.org/maven2/org/codelibs/curl4j/) for available versions.
    
    ### Gradle
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:11:14 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  2. docs/es/docs/advanced/security/oauth2-scopes.md

    * La *path operation* `read_own_items` tiene:
        * Scopes requeridos `["items"]` con la dependencia:
        * `get_current_active_user`:
            * La función de dependencia `get_current_active_user` tiene:
                * Scopes requeridos `["me"]` con la dependencia:
                * `get_current_user`:
                    * La función de dependencia `get_current_user` tiene:
                        * No requiere scopes por sí misma.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  3. api/maven-api-di/src/main/java/org/apache/maven/api/di/package-info.java

    /**
     * A dependency injection framework for Maven that provides JSR-330 style annotations
     * for managing object lifecycle and dependencies within Maven's build process.
     * <p>
     * This package provides a set of annotations that control how objects are created,
     * managed and injected throughout Maven's execution lifecycle. The framework is designed
     * to be lightweight yet powerful, supporting various scopes of object lifecycle from
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jan 30 23:28:59 UTC 2025
    - 896 bytes
    - Viewed (0)
  4. compat/maven-compat/src/test/java/org/apache/maven/project/inheritance/t04/ProjectInheritanceTest.java

    import static org.junit.jupiter.api.Assertions.assertNotNull;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Verifies the version of a dependency listed in a parent's
     * dependencyManagement section is chosen over another version of the same
     * dependency, listed transitively.
     *
     */
    @Deprecated
    @SuppressWarnings("checkstyle:UnusedLocalVariable")
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jul 23 17:27:08 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  5. docs/es/docs/tutorial/dependencies/classes-as-dependencies.md

    Podemos hacerlo mejor...
    
    ## Qué hace a una dependencia
    
    Hasta ahora has visto dependencias declaradas como funciones.
    
    Pero esa no es la única forma de declarar dependencias (aunque probablemente sea la más común).
    
    El factor clave es que una dependencia debe ser un "callable".
    
    Un "**callable**" en Python es cualquier cosa que Python pueda "llamar" como una función.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         *
         * <h4>Context-sensitive interpretation</h4>
         * A dependency with this path type will not necessarily be placed on the class path.
         * There are two circumstances where the dependency may nevertheless be placed somewhere else:
         *
         * <ul>
         *   <li>If {@link #MODULES} path type is also set, then the dependency can be placed either on the
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jun 26 07:56:58 UTC 2025
    - 15K bytes
    - Viewed (1)
  7. README.md

      <!-- Remove after OkHttp 5.3.0 with updated BOM. -->
      <version>5.2.0</version>
    </dependency>
    
    <dependency>
      <groupId>com.squareup.okhttp3</groupId>
      <artifactId>mockwebserver3</artifactId>
    </dependency>
    
    <dependency>
      <groupId>com.squareup.okhttp3</groupId>
      <artifactId>logging-interceptor</artifactId>
    </dependency>
    ```
    
    MockWebServer
    -------------
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 28 07:33:49 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/java/org/apache/maven/api/model/package-info.java

     * <p>
     * Key components include:
     * <ul>
     *   <li>{@link org.apache.maven.api.model.Model} - The root element of a POM file</li>
     *   <li>{@link org.apache.maven.api.model.Dependency} - Represents a project dependency</li>
     *   <li>{@link org.apache.maven.api.model.Plugin} - Represents a Maven plugin configuration</li>
     *   <li>{@link org.apache.maven.api.model.Build} - Contains build configuration information</li>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Apr 03 13:33:59 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.java

        /**
         * Indicates whether dependency collection will be
         * required when executing the Mojo.
         * If not set, it will be inferred from the fields
         * annotated with the {@link Resolution} annotation.
         */
        @Nonnull
        boolean dependencyCollection() default false;
    
        /**
         * Comma separated list of path scopes that will be
         * required for dependency resolution.
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Aug 29 18:21:40 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/security/simple-oauth2.md

    ### `OAuth2PasswordRequestForm` { #oauth2passwordrequestform }
    
    First, import `OAuth2PasswordRequestForm`, and use it as a dependency with `Depends` in the *path operation* for `/token`:
    
    {* ../../docs_src/security/tutorial003_an_py310.py hl[4,78] *}
    
    `OAuth2PasswordRequestForm` is a class dependency that declares a form body with:
    
    * The `username`.
    * The `password`.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 9.4K bytes
    - Viewed (0)
Back to top