Search Options

Results per page
Sort
Preferred Languages
Advance

Results 231 - 240 of 556 for Manages (0.03 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/internal/transformation/TransformerManager.java

    import org.eclipse.aether.RepositorySystemSession;
    import org.eclipse.aether.deployment.DeployRequest;
    import org.eclipse.aether.installation.InstallRequest;
    
    /**
     * Maven transformer manager.
     *
     * @since 4.0.0
     */
    public interface TransformerManager {
        InstallRequest remapInstallArtifacts(RepositorySystemSession session, InstallRequest request);
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 20:01:00 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  2. LICENSE

    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    Registered: Sun Dec 28 09:35:17 UTC 2025
    - Last Modified: Sun Jan 12 10:32:39 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  3. docs/ko/docs/tutorial/dependencies/dependencies-with-yield.md

    원하는 의존성을 원하는 대로 조합할 수 있습니다.
    
    **FastAPI**는 모든 것이 올바른 순서로 실행되도록 보장합니다.
    
    /// note | 기술 세부사항
    
    파이썬의 <a href=“https://docs.python.org/3/library/contextlib.html” class=“external-link” target=“_blank”>Context Managers</a> 덕분에 이 기능이 작동합니다.
    
    **FastAPI**는 이를 내부적으로 컨텍스트 관리자를 사용하여 구현합니다.
    
    ///
    
    ## `yield`와 `HTTPException`를 사용하는 의존성
    
    `yield`와 `try` 블록이 있는 의존성을 사용하여 예외를 처리할 수 있다는 것을 알게 되었습니다.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Feb 09 14:54:09 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  4. docs_src/metadata/tutorial004_py39.py

    from fastapi import FastAPI
    
    tags_metadata = [
        {
            "name": "users",
            "description": "Operations with users. The **login** logic is also here.",
        },
        {
            "name": "items",
            "description": "Manage items. So _fancy_ they have their own docs.",
            "externalDocs": {
                "description": "Items external docs",
                "url": "https://fastapi.tiangolo.com/",
            },
        },
    ]
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 693 bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.13.md

    ### SIG Cluster Lifecycle
    
    Registered: Fri Dec 26 09:05:12 UTC 2025
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  6. docs/pt/llm-prompt.md

    * «/// note»: «/// note | Nota»
    * «/// tip»: «/// tip | Dica»
    * «/// warning»: «/// warning | Atenção»
    * «(you should)»: «(você deveria)»
    * async context manager: gerenciador de contexto assíncrono
    * autocomplete: autocompletar
    * autocompletion: preenchimento automático
    * bug: bug
    * context manager: gerenciador de contexto
    * cross domain: cross domain (do not translate to "domínio cruzado")
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/DependencyScope.java

         * whether the DependencyCoordinates is used in dependency management, in which case it means the scope is not
         * explicitly managed by this managed dependency, or as a real dependency, in which case, the scope
         * will default to {@link #COMPILE}.
         */
        UNDEFINED("", false),
    
        /**
         * Compile only.
         */
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Mar 19 14:33:26 UTC 2025
    - 4K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/Node.java

         * </ul>
         * Where details may include:
         * <ul>
         *   <li>Version management information (if the version was managed from a different version)</li>
         *   <li>Scope management information (if the scope was managed from a different scope)</li>
         *   <li>Scope updates (if the scope was changed during resolution)</li>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Mar 24 14:10:11 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

        /**
         * Default constructor.
         * Initializes the API manager with the admin server path prefix.
         */
        public SearchEngineApiManager() {
            super();
            setPathPrefix(ADMIN_SERVER);
        }
    
        /**
         * Registers this API manager with the web API manager factory.
         * Called automatically after construction via @PostConstruct.
         */
        @PostConstruct
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  10. compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/VersionRange.java

         *         of this version range and the specified version range if both version ranges have
         *         restrictions. Otherwise, the restrictions on the returned range will be empty.
         *         </p>
         *         <p>
         *         The recommended version of the returned version range will be the recommended version of
         *         this version range, provided that ranges falls within the intersected restrictions. If
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 17:27:08 UTC 2025
    - 19K bytes
    - Viewed (0)
Back to top