Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 868 for dependents (3.85 sec)

  1. src/go/types/initorder.go

    // Object dependency graph
    
    // A dependency is an object that may be a dependency in an initialization
    // expression. Only constants, variables, and functions can be dependencies.
    // Constants are here because constant expression cycles are reported during
    // initialization order computation.
    type dependency interface {
    	Object
    	isDependency()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. cmd/dependencyverifier/dependencyverifier.go

    	aMinusB := map[string]bool{}
    	bMinusA := map[string]bool{}
    	for _, dependency := range a {
    		aMinusB[dependency] = true
    	}
    	for _, dependency := range b {
    		if _, found := aMinusB[dependency]; found {
    			delete(aMinusB, dependency)
    		} else {
    			bMinusA[dependency] = true
    		}
    	}
    	aMinusBList := []string{}
    	bMinusAList := []string{}
    	for dependency := range aMinusB {
    		aMinusBList = append(aMinusBList, dependency)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 07 01:48:30 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  3. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishMultiProjectIntegTest.groovy

        def "project dependency correctly reflected in POM"() {
            createBuildScripts()
    
            when:
            run "publish"
    
            then:
            projectsCorrectlyPublished()
        }
    
        def "project dependencies reference publication identity of dependent project (version mapping: #mapping)"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectDependencyPublicationResolverTest.groovy

            resolver.resolveVariant(ModuleVersionIdentifier, project.identityPath, "variant-name")
    
            then:
            1 * projectConfigurer.configureFully(project.owner)
        }
    
        def "uses project coordinates when dependent project has no publications"() {
            when:
            project.group >> "dep-group"
            project.name >> "project-name"
            project.version >> "dep-version"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:37:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

      ResourceIdSet dependent_ids;
      if (resource_id == kUnknownResourceId) {
        // Unknown resource has potential dependence on all other resources, except
        // those that are only self-dependent. For `Fetch` op make every resource
        // dependent in any case to ensure that all side-effecting ops in
        // `Graph` feed into `Fetch` (its terminator).
        for (auto& entry : per_resource_access_info_) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/tests/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/session/builder/StandaloneSessionBuilderTest.kt

                    val main = addModule(
                        buildKtSourceModule {
                            addSourceRoot(testDataPath(root).resolve("dependent"))
                            platform = JvmPlatforms.defaultJvmPlatform
                            moduleName = "dependent"
                        }
                    )
                    sourceModule = addModule(
                        buildKtSourceModule {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/swift_library_plugin.adoc

    [[sec:swift_library_task_variants]]
    === Variant-dependent Tasks
    
    The Swift Library Plugin creates tasks based on variants of the library component.
    Read the <<building_swift_projects.adoc#sec:introducing_build_variants-swift,introduction to build variants>> for more information.
    The following diagrams show the relationship between variant-dependent tasks.
    
    .Swift Library Plugin variant-dependent task graph
    image::swift-library-variant-task-graph.png[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDescriptorDependencyExcludeResolveIntegrationTest.groovy

        }
        /**
         * Exclude of transitive dependency involved in a dependency cycle.
         *
         * Dependency graph:
         * a -> b -> c -> d -> c
         *
         * 'c' is excluded on dependency a->b
         */
        def "module involved in dependency cycle with excluded #name"() {
            given:
            IvyModule moduleA = ivyRepo.module('a').dependsOn('b')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 20.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/groovy_plugin.adoc

    If Groovy is used for production code, the Groovy dependency should be added to the `implementation` configuration:
    
    .Configuration of Groovy dependency
    ====
    include::sample[dir="snippets/groovy/quickstart/kotlin",files="build.gradle.kts[tags=groovy-dependency]"]
    include::sample[dir="snippets/groovy/quickstart/groovy",files="build.gradle[tags=groovy-dependency]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/dependencies/index.md

    Es ist so konzipiert, sehr einfach zu verwenden zu sein und es jedem Entwickler sehr leicht zu machen, andere Komponenten mit **FastAPI** zu integrieren.
    
    ## Was ist „Dependency Injection“
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:01:10 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top