Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 523 for dependents (1.81 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskSerializationIntegrationTest.groovy

            settingsFile << """
                include ':foo'
            """
    
            buildFile << """
                tasks.register("dependency")
            """
    
            file("foo/build.gradle") << """
                tasks.register("dependent") {
                    inputs.files(parent.tasks.findByPath(':dependency'))
                }
            """
    
            when:
            configurationCacheFails ":foo:dependent"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanTest.groovy

            then:
            executes(finalized, f2, d, f1)
        }
    
        @Issue("GRADLE-2957")
        def "task with a dependency and a finalizer both having a common finalizer"() {
            // Finalizer task
            Task finalTask = task('finalTask')
    
            // Task with this finalizer
            Task dependency = task('dependency', finalizedBy: [finalTask])
            Task finalizer = task('finalizer', finalizedBy: [finalTask])
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 35.5K bytes
    - Viewed (0)
  8. maven-core/src/site/apt/offline-mode.apt

      get as a result.
    
    * Implications for Resolution
    
    ** Dependency Resolution
    
      This one is obvious...we only have access to the repositories using
      the file:// protocol and living on a truly local filesystem when
      offline.
    
    ** Plugin Resolution
    
      This is similar to dependency resolution. Plugin repositories not
      using file:// or not residing on a local (not shared) filesystem will
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    Click on a dependency and select the "Required By" tab to see the selection reason and origin of the dependency.
    
    image::dependency-management-dependency-insight-report-build-scan.png[]
    
    === Dependency Insights
    
    Gradle provides the built-in `dependencyInsight` task to render a  _dependency insight report_ from the command line.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. fess-crawler/pom.xml

    			<version>${commons.io.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.apache.commons</groupId>
    			<artifactId>commons-lang3</artifactId>
    			<version>${commons.lang3.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.apache.commons</groupId>
    			<artifactId>commons-text</artifactId>
    			<version>${commons.text.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>commons-net</groupId>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 30 06:32:24 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top