Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 569 for transitive1 (0.19 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ForceRealizedMetadataIntegrationTest.groovy

                }
            """
            transitive = mavenHttpRepo.module("test", "transitive", "1.0")
            direct = mavenHttpRepo.module("test", "direct", "1.0")
            direct.dependsOn(transitive)
        }
    
        def "can resolve derived variants"() {
            transitive.adhocVariants().variant("jar", [
                    "org.gradle.category": "library",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-excludeForDependency/tests/exclude-transitive-for-dependency.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 409 bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysis.java

    import java.util.HashMap;
    import java.util.HashSet;
    import java.util.Map;
    import java.util.Set;
    
    /**
     * Combines {@link ClassSetAnalysisData}, {@link AnnotationProcessingData} and {@link CompilerApiData} to implement the transitive change detection algorithm.
     */
    public class ClassSetAnalysis {
    
        private final ClassSetAnalysisData classAnalysis;
        private final AnnotationProcessingData annotationProcessingData;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-excludeForConfiguration/tests/exclude-transitive-for-configuration.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 100 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-disableForDependency/tests/disabling-transitive-dependency-resolution.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 34 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    [[sub:using-platform-to-control-transitive-deps]]
    == Using a platform to control transitive versions
    
    A <<dependency_management_terminology.adoc#sub::terminology_platform,platform>> is a special software component which can be used to control transitive dependency versions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_lazy_test_of_test_dep.txt

    #
    # lazy ---- a.1 ---- b.1 ---- c.1
    
    cp go.mod go.mod.old
    go mod tidy
    cmp go.mod go.mod.old
    
    
    # In Go 1.15 mode, 'go list -m all' includes modules needed by the
    # transitive closure of tests of dependencies of tests of dependencies of ….
    
    go list -m all
    stdout '^example.com/b v0.1.0 '
    stdout '^example.com/c v0.1.0 '
    cmp go.mod go.mod.old
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 08 19:32:28 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  8. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoAggregationIntegrationTest.groovy

                        }
                    }
                """
                file("transitive/build.gradle") << """
                    plugins {
                        id 'java'
                        id 'jacoco'
                    }
                """
                file("transitive/src/main/java/transitive/Powerize.java").java """
                    package transitive;
    
                    public class Powerize {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 26.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/core_dependency_management.adoc

    * information about the project that created the dependency
    * the authors of the dependency
    * other dependencies required for a dependency to work properly, known as _transitive dependencies_
    
    You can <<dependency_constraints.adoc#dependency-constraints,customize Gradle's handling of transitive dependencies>> based on the requirements of a project.
    
    Projects with hundreds of declared dependencies can be difficult to debug.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. cmd/import-boss/testdata/transitive/aaa/file.go

    import (
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/transitive/allowed"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/transitive/allowed/a1"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/transitive/forbidden"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/transitive/forbidden/f1"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/transitive/neither"
    	_ "k8s.io/kubernetes/cmd/import-boss/testdata/transitive/neither/n1"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 454 bytes
    - Viewed (0)
Back to top