Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 868 for dependents (1.45 sec)

  1. docs/en/docs/tutorial/dependencies/index.md

    **FastAPI** has a very powerful but intuitive **<abbr title="also known as components, resources, providers, services, injectables">Dependency Injection</abbr>** system.
    
    It is designed to be very simple to use, and to make it very easy for any developer to integrate other components with **FastAPI**.
    
    ## What is "Dependency Injection"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    The main drawback of this method is that it is ordering dependent.
    Keeping order in a very large graph can be a challenge.
    For example, what if the new version of a dependency ends up having its own dependency declarations in a different order than the previous version?
    
    With Maven, this could have unwanted impact on resolved versions.
    --
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    .An explicit configuration dependency
    ====
    include::sample[dir="snippets/dependencyManagement/modelingFeatures-crossProjectPublications-simple/kotlin",files="consumer/build.gradle.kts[tags=explicit-configuration-dependency]"]
    include::sample[dir="snippets/dependencyManagement/modelingFeatures-crossProjectPublications-simple/groovy",files="consumer/build.gradle[tags=explicit-configuration-dependency]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/native/cpp_library_plugin.adoc

    [[sec:cpp_library_task_variants]]
    === Variant-dependent Tasks
    
    The {cpp} Library Plugin creates tasks based on variants of the library component.
    Read the <<building_cpp_projects.adoc#sec:introducing_build_variants-cpp,introduction to build variants>> for more information.
    The following diagrams show the relationship between variant-dependent tasks.
    
    .{cpp} Library Plugin variant-dependent task graph
    image::cpp-library-variant-task-graph.png[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    .Declaring a Scala 3 dependency for production code
    ====
    include::sample[dir="snippets/scala/scala3/kotlin",files="build.gradle.kts"]
    include::sample[dir="snippets/scala/scala3/groovy",files="build.gradle"]
    ====
    
    If Scala is only used for test code, the `scala-library` dependency should be added to the `testImplementation` configuration:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
  6. pkg/kube/krt/collection.go

    	// These are keyed by the internal uid() function on collections.
    	// Note this does not include `parent`, which is the *primary* dependency declared outside of transformation functions.
    	collectionDependencies sets.Set[collectionUID]
    	// Stores a map of I -> secondary dependencies (added via Fetch)
    	objectDependencies map[Key[I]][]*dependency
    
    	// eventHandlers is a list of event handlers registered for the collection. On any changes, each will be notified.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/controlling_task_execution.adoc

    Explicit dependencies :: These dependencies are explicitly declared in the build script using the `dependsOn`, `mustRunAfter`, or `shouldRunAfter` methods. For example, if you want to ensure that `taskB` always runs after `taskA`, you can explicitly declare this dependency using `taskB.mustRunAfter(taskA)`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseClasspath.java

     *
     *     //default settings for downloading sources and Javadoc:
     *     downloadSources = true
     *     downloadJavadoc = false
     *
     *     //if you want to expose test classes to dependent projects
     *     containsTestFixtures = true
     *
     *     //customizing which Eclipse source directories should be marked as test
     *     testSourceSets = [sourceSets.test]
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    [[implicit_dependency]]
    == Implicit dependencies between tasks
    
    This error indicates that you have a task which depends on another, but that no explicit or implicit dependency is declared between those two tasks.
    As a consequence, the results of the build are dependent on the order of execution of tasks, often referred to "accidental dependencies between tasks".
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

         *
         * @param dependency dependency for which to get the coordinate
         * @return coordinate for the given dependency
         *
         * @see DependencyCoordinateFactory#create(Session, Dependency)
         */
        @Nonnull
        DependencyCoordinate createDependencyCoordinate(@Nonnull Dependency dependency);
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
Back to top