Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 246 for dependents (0.15 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolutionResultGraphBuilderSpec.groovy

            def a2 = first(c.dependencies).selected
    
            a2.is(a)
    
            first(b.dependents).is(first(a.dependencies))
            first(c.dependents).is(first(b.dependencies))
            first(a.dependents).is(first(c.dependencies))
    
            first(b.dependents).from.is(a)
            first(c.dependents).from.is(b)
            first(a.dependents).from.is(c)
        }
    
        def "accumulates and avoids duplicate dependencies"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelNodeInternal.java

                if (dependencies == null) {
                    dependencies = new HashSet<>();
                }
                dependencies.add(node);
                if (node.dependents == null) {
                    node.dependents = new HashSet<>();
                }
                node.dependents.add(this);
            }
            if (executedRules == null) {
                executedRules = new ArrayList<>();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:51:08 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_tidy_compat.txt

    package compatible
    
    import (
    	_ "example.com/version"
    	_ "example.net/lazy"
    )
    -- lazy/go.mod --
    // Module lazy requires example.com/version v1.0.1.
    //
    // However, since this module is lazy, its dependents
    // should not need checksums for that version of the module
    // unless they actually import packages from it.
    module example.net/lazy
    
    go 1.17
    
    require example.com/version v1.0.1
    -- lazy/lazy.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

            resolutionStrategy.capabilitiesResolution.all {
                selectHighestVersion()
            }
        }
    }
    
    fun readCapabilitiesFromJson() {
        val capabilitiesFile = repoRoot().file("gradle/dependency-management/capabilities.json").asFile
        val capabilities: List<CapabilitySpec> = readCapabilities(capabilitiesFile)
        capabilities.forEach {
            it.configure(dependencies.components, configurations)
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/SystemClassLoaderTest.groovy

     *
     * This is important for plugins that need to use isolated class loaders to avoid conflicts.
     *
     * When running without the daemon, success is dependant on the start scripts doing the right thing.
     * When running with the daemon, success is dependent on DaemonConnector forking the daemon process with the right classpath.
     *
     * This test is not meaningful when running the embedded integration test mode, so we ignore it in that case.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/dependencies/sub-dependencies.md

    This is quite simple (not very useful), but will help us focus on how the sub-dependencies work.
    
    ## Second dependency, "dependable" and "dependant"
    
    Then you can create another dependency function (a "dependable") that at the same time declares a dependency of its own (so it is a "dependant" too):
    
    === "Python 3.10+"
    
        ```Python hl_lines="13"
        {!> ../../../docs_src/dependencies/tutorial005_an_py310.py!}
        ```
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/MessageBuilderHelper.java

            if (alreadySeen.add(component.getFrom())) {
                currentPath.add(0, component);
                for (EdgeState dependent : component.getFrom().getIncomingEdges()) {
                    List<EdgeState> otherPath = Lists.newArrayList(currentPath);
                    pathTo(dependent, otherPath, accumulator, alreadySeen);
                }
                if (component.getFrom().isRoot()) {
                    accumulator.add(currentPath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. maven-embedder/pom.xml

        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-core</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-jline</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-plugin-api</artifactId>
        </dependency>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. maven-api-impl/pom.xml

        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-api-xml</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-api-toolchain</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-api-di</artifactId>
        </dependency>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. maven-toolchain-builder/pom.xml

        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-toolchain-model</artifactId>
        </dependency>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-builder-support</artifactId>
        </dependency>
        <dependency>
          <groupId>org.codehaus.plexus</groupId>
          <artifactId>plexus-interpolation</artifactId>
        </dependency>
        <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top