Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 680 for root1 (0.09 sec)

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

            new VersionParser(),
            variantSelector,
            buildOperationProcessor
        )
    
        def root = rootProject()
        def rootComponent = Stub(RootComponentMetadataBuilder.RootComponentState) {
            getRootComponent() >> root
            getRootVariant() >> root.getConfiguration('root')
        }
    
        private TestGraphVisitor resolve(Spec<? super DependencyMetadata> edgeFilter = { true }) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 45.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilderTest.groovy

      org:dep2:3.0 -> org:dep2:3.0 - Could not resolve org:dep2:3.0.
    """
        }
    
        def "visiting resolved module version again has no effect"() {
            def root = rootNode(1, "org", "root", "1.0")
            def selector = selector(7, "org", "dep1", "2.0")
            root.outgoingEdges >> [dep(selector, 1, 2)]
    
            builder.start(root)
    
            builder.visitNode(root)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/result/DefaultResolutionResultTest.groovy

            //does not contain unresolved dep, contains root
            modules == [root, dep1.selected, dep2.selected, dep3.selected] as Set
        }
    
        def "provides hooks for iterating each module or dependency exactly once"() {
            given:
            //root -> dep1,dep2; dep1 -> dep3
            def dep = newDependency('dep1')
            def dep3 = newDependency('dep3')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParameterizedModelQueryIntegrationTest.groovy

            }
            outputContains("configuring root")
            outputContains("creating model with parameter='fetch1' for root project 'root'")
            outputContains("creating model with parameter='fetch2' for root project 'root'")
    
            and:
            models.keySet() ==~ [":"]
            models.values().every { it.size() == 4 }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilderTest.groovy

            }
            configurationsProvider.findByName('root') >> resolvable()
            configurationsProvider.findByName('conf') >> resolvable()
    
            def root = builder.toRootComponent('root')
            def variant = root.rootComponent.getConfiguration('conf')
    
            when:
            builder.validator.validateMutation(mutationType)
            def otherRoot = builder.toRootComponent('root')
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_tidy_compat_ambiguous.txt

    # For this module, the dependency providing package
    # example.net/ambiguous/nested/pkg is unambiguous in Go 1.17 (because only one
    # root of the module graph contains the package), whereas it is ambiguous in
    # Go 1.16 (because two different modules contain plausible packages and Go 1.16
    # does not privilege roots above other dependencies).
    #
    # However, the overall build list is identical for both versions.
    
    cp go.mod go.mod.orig
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/node_matchers_test.cc

    }
    
    TEST(NodeMatchers, OutputIndices) {
      Scope root = Scope::NewRootScope().ExitOnError();
      Output pred = ops::Placeholder(root.WithOpName("pred"), DT_BOOL);
    
      Output data = ops::Placeholder(root.WithOpName("data"), DT_FLOAT);
      ops::Switch sw(root.WithOpName("switch"), data, pred);
      Output add = ops::Add(root.WithOpName("add"), sw.output_true,
                            ops::Placeholder(root.WithOpName("addend"), DT_FLOAT));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 14:43:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r68/CompositeBuildModuleCycleCrossVersionSpec.groovy

        }
    
        def "Eclipse can handle cycles involving the root build"() {
            given:
            compositeWithRootInvolvingIncludeCycle()
    
            when:
            def eclipseProjects = withConnection { action(new FetchEclipseProjects()).run() }
    
            then:
            eclipseProjects.collect { it.name } == ['module-root', 'module-a']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/GradleBuildModelCrossVersionSpec.groovy

                    includeBuild 'includedBuild'
                """
            }
            multiProjectBuildInSubFolder("includedBuild", ["a", "b", "c"])
            when:
            GradleBuild model = loadToolingModel(GradleBuild)
    
            then:
            model.includedBuilds.empty
        }
    
        def "No included builds for single root project"() {
            singleProjectBuildInRootFolder("root")
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-main/src/crossVersionTest/groovy/org/gradle/integtests/wrapper/WrapperPropertiesLoaderCrossVersionTest.groovy

            output.contains('system_property_available in included root:            true')
            output.contains('project_property_available in included root:           false')
            output.contains('overridden_by_includedBuild in included root:          included')
            output.contains('system_property_available in root:                     true')
            output.contains('project_property_available in root:                    true')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top