Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 569 for transitive1 (0.28 sec)

  1. hack/verify-no-vendor-cycles.sh

    if [[ -n "${bad_deps}" ]]; then
      echo "Found disallowed dependencies that transitively depend on k8s.io/kubernetes or staging modules:"
      echo "${bad_deps}"
      exit 1
    fi
    
    kube::util::ensure-temp-dir
    
    # Get vendored packages dependencies
    # Use -deps flag to include transitive dependencies
    go list -mod=vendor -test -tags other   -e -deps -json ./vendor/... > "${KUBE_TEMP}/deps_other.json"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsIntegrationTest.groovy

            mavenRepo.module("org", "foo", '1.0')
                .dependsOn("org", "baz", '1.0').publish()
            mavenRepo.module("org", "baz", '1.0')
                .dependsOn("org", "baz-transitive", "1.0").publish()
            mavenRepo.module("org", "baz-transitive", "1.0").publish()
    
            // "org:bar:1.0" -> "org:foo:1.1" (no further transitive deps)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/integTest/groovy/org/gradle/language/objectivec/ObjectiveCLanguageIncrementalCompileIntegrationTest.groovy

            and:
            outputs.recompiledFile sourceFile
        }
    
        @ToBeFixedForConfigurationCache
        def "recompiles source file when transitively imported header file is changed"() {
            given:
            def transitiveHeaderFile = file("src/main/headers/transitive.h") << """
               // Dummy header file
    """
            otherHeaderFile << """
                #import "${transitiveHeaderFile.name}"
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    [[sec:disabling_resolution_transitive_dependencies]]
    == Disabling transitive resolution
    
    By default Gradle resolves all transitive dependencies specified by the dependency metadata.
    Sometimes this behavior may not be desirable e.g. if the metadata is incorrect or defines a large graph of transitive dependencies.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

        @Unroll("Selects direct=#expectedDirectVariant, transitive=[#expectedTransitiveVariantA, #expectedTransitiveVariantB], leaf=#expectedLeafVariant making sure dependency attribute value doesn't leak to transitives")
        def "Attribute value on dependency only affects selection of this dependency (using component metadata rules)"() {
            given:
            repository {
                def modules = ['direct', 'transitive', 'leaf']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/buildlist.go

    // go.mod file:
    //
    //  1. (The import invariant.) Every module that provides a package transitively
    //     imported by any package or test in the main module is included as a root.
    //     This follows by induction from (1) and (3) above. Transitively-imported
    //     packages loaded during this invocation are marked with pkgInAll (1),
    //     and by hypothesis any transitively-imported packages loaded in previous
    //     invocations were already roots in rs (3).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/library_vs_application.adoc

    - however if you are a library, adding <<dependency_downgrade_and_exclude.adoc#sec:excluding-transitive-deps,exclusions>> may prevent consumers from working properly, because they would exercise a path of the code that you don't
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/derived/DerivedVariantsResolutionIntegrationTest.groovy

                }
            """
            transitive = mavenHttpRepo.module("test", "transitive", "1.0")
            direct = mavenHttpRepo.module("test", "direct", "1.0")
            direct.dependsOn(transitive)
        }
    
        // region With Gradle Module Metadata
        def "direct has GMM and no sources or javadoc jars"() {
            transitive.withModuleMetadata()
            transitive.publish()
            direct.withModuleMetadata()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_strategy_tuning.adoc

    However, it is easy to miss that some dependencies are upgraded because of a transitive dependency.
    In the example above, if `1.1` was a version used in your build script and `1.3` a version brought transitively, you could use `1.3` without actually noticing.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

                        }
                    }
                """
                file("transitive/build.gradle") << """
                    plugins {
                        id 'java'
                    }
                """
                file("transitive/src/main/java/transitive/Powerize.java").java """
                    package transitive;
    
                    public class Powerize {
                        int pow(int x, int y) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
Back to top