Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 568 for depB (0.04 sec)

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

                }.publish()
            def depB = mavenHttpRepo.module('org.test', 'depB', '1.0').dependsOn([exclusions: [[module: 'excluded']]], depC).publish()
            def depF = mavenHttpRepo.module('org.test', 'depF', '1.0').dependsOn(depC).publish()
            def depE = mavenHttpRepo.module('org.test', 'depE', '1.0').dependsOn(depF).publish()
            def depD = mavenHttpRepo.module('org.test', 'depD', '1.0').dependsOn(depE).publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserBomTest.groovy

            then:
            def depA = metadata.dependencies.find { it.selector.group == 'group-a'}
            depA.selector == moduleId('group-a', 'module-a', '1.0')
            !depA.optional
            depA.transitive
            def depB = metadata.dependencies.find { it.selector.group == 'group-b'}
            depB.selector == moduleId('group-b', 'module-b', '2.0')
            depB.constraint
            !depB.transitive
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  3. docs_src/dependencies/tutorial008_an_py39.py

        try:
            yield dep_a
        finally:
            dep_a.close()
    
    
    async def dependency_b(dep_a: Annotated[DepA, Depends(dependency_a)]):
        dep_b = generate_dep_b()
        try:
            yield dep_b
        finally:
            dep_b.close(dep_a)
    
    
    async def dependency_c(dep_b: Annotated[DepB, Depends(dependency_b)]):
        dep_c = generate_dep_c()
        try:
            yield dep_c
        finally:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 521 bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r56/ToolingApiEclipseModelTestSourcesCrossVersionSpec.groovy

            EclipseProjectDependency depB = projectA.projectDependencies.find { it.path == 'b' }
            EclipseProjectDependency depC = projectA.projectDependencies.find { it.path == 'c' }
            EclipseProjectDependency depD = projectA.projectDependencies.find { it.path == 'd' }
    
            then:
            !depB.classpathAttributes.find { it.name == 'test' && it.value == 'true' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. docs_src/dependencies/tutorial008_an.py

        try:
            yield dep_a
        finally:
            dep_a.close()
    
    
    async def dependency_b(dep_a: Annotated[DepA, Depends(dependency_a)]):
        dep_b = generate_dep_b()
        try:
            yield dep_b
        finally:
            dep_b.close(dep_a)
    
    
    async def dependency_c(dep_b: Annotated[DepB, Depends(dependency_b)]):
        dep_c = generate_dep_c()
        try:
            yield dep_c
        finally:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 531 bytes
    - Viewed (0)
  6. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileProcessorTest.groovy

            //           D3
            // S2 ------/
            //    \ D4
    
            graph[source1] = [dep1, dep2]
            graph[source2] = [dep3, dep4]
            graph[dep1] = [dep3]
            graph[dep2] = []
            graph[dep3] = []
            graph[dep4] = []
        }
    
        def initialFiles() {
            graph.keySet().each { TestFile sourceFile ->
                parse(sourceFile)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:31:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/result/DefaultResolutionResultTest.groovy

            then:
            deps == [dep1, dep2, dep3, dep4] as Set
    
            and:
            //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')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testshared/testdata/dep3/dep3.go

    package dep3
    
    // The point of this test file is that it references a type from
    // depBase that is also referenced in dep2, but dep2 is loaded by the
    // linker before depBase (because it is earlier in the import list).
    // There was a bug in the linker where it would not correctly read out
    // the type data in this case and later crash.
    
    import (
    	"testshared/dep2"
    	"testshared/depBase"
    )
    
    type Dep3 struct {
    	dep  depBase.Dep
    	dep2 dep2.Dep2
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 503 bytes
    - Viewed (0)
  9. cmd/site-replication_test.go

    			set.CreateStringSet("dep1", "dep2", "dep3"),
    			set.CreateStringSet("dep1", "dep2", "dep3", "dep4"),
    			[]string{},
    		},
    		// Test3: not currently under site replication.
    		{
    			[]madmin.PeerInfo{},
    			set.CreateStringSet(),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 20 00:53:08 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/build_pgo_auto_multi.txt

    # by matching 3 occurrences of "compile dep.go", among which
    # 2 of them have -pgoprofile (therefore one without).
    stderr -count=3 'compile.*dep(/|\\\\)dep.go'
    stderr -count=2 'compile.*-pgoprofile=.*dep(/|\\\\)dep\.go'
    
    stderr -count=3 'compile.*dep2(/|\\\\)dep2.go'
    stderr -count=2 'compile.*-pgoprofile=.*dep2(/|\\\\)dep2\.go'
    
    stderr -count=3 'compile.*dep3(/|\\\\)dep3.go'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:38:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top