Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,019 for dev2 (0.09 sec)

  1. src/cmd/cgo/internal/testshared/testdata/dep3/dep3.go

    // 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
    }
    
    func D3() int {
    	var x Dep3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 503 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/work_replace_conflict.txt

    module example.com/n
    
    require example.com/dep v1.0.0
    replace example.com/dep v1.0.0 => ../dep2
    -- n/n.go --
    package n
    
    import "example.com/dep"
    
    func F() {
    	dep.G()
    }
    -- dep1/go.mod --
    module example.com/dep
    -- dep1/dep.go --
    package dep
    
    func G() {
    }
    -- dep2/go.mod --
    module example.com/dep
    -- dep2/dep.go --
    package dep
    
    func G() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 15 22:28:43 UTC 2022
    - 1009 bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyHandlerTest.groovy

            dep1.isEndorsingStrictVersions()
    
            when:
            dependencyHandler.platform(dep2) { }
    
            then:
            1 * dependencyFactory.createDependency(dep2) >> dep2
            dep2.attributes.getAttribute(Category.CATEGORY_ATTRIBUTE).name == 'platform'
            dep2.isEndorsingStrictVersions()
        }
    
        void "platform dependency can be made non-endorsing"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 11 10:37:21 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            def dep1 = withColorVariants(remoteRepo.module("group", "thing1", "1.2")).publish().allowAll()
            def dep2 = withColorVariants(remoteRepo.module("group", "thing2", "1.2")).publish().allowAll()
            withColorVariants(remoteRepo.module("group", "thing3", "1.2")).dependsOn(dep1).dependsOn(dep2).publish().allowAll()
    
            setupBuildWithColorTransformThatTakesUpstreamArtifacts()
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  5. doc/next/9-todo.md

    CL 568340 - fixed a spurious race in time.Ticker.Reset (added via accepted proposal https://go.dev/issue/33184), doesn't seem to need a release note
    CL 562619 - x/website CL documented minimum bootstrap version on go.dev, mentioning accepted proposals go.dev/issue/54265 and go.dev/issue/44505; doesn't need a release note
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. doc/next/3-tools.md

    <!-- go.dev/issue/58894 ("all: add opt-in transparent telemetry to Go toolchain") -->
    <!-- TODO: document Go 1.23 behavior (from https://go.dev/cl/559199, https://go.dev/cl/559519, https://go.dev/cl/559795, https://go.dev/cl/562715, https://go.dev/cl/562735, https://go.dev/cl/564555, https://go.dev/cl/570679, https://go.dev/cl/570736, https://go.dev/cl/582695, https://go.dev/cl/584276, https://go.dev/cl/585235, https://go.dev/cl/586138) -->
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 19:06:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. pkg/volume/util/device_util_linux_test.go

    	}
    	return nil, errors.New("not Implemented for Mock")
    }
    
    func (handler *mockOsIOHandler) EvalSymlinks(path string) (string, error) {
    	links := map[string]string{
    		"/returns/a/dev":   "/dev/sde",
    		"/returns/non/dev": "/sys/block",
    		"/dev/disk/by-path/127.0.0.1:3260-eui.02004567A425678D-lun-0": "/dev/sda",
    		"/dev/disk/by-path/127.0.0.3:3260-eui.03004567A425678D-lun-0": "/dev/sdb",
    		"/dev/dm-2": "/dev/dm-2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 8K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/project/artifact/MavenMetadataSourceTest.java

            dep1.addExclusion( exc );
    
            Dependency dep2 = new Dependency();
            dep2.setGroupId( "test" );
            dep2.setArtifactId( "test-artifact2" );
            dep2.setVersion( "1" );
            dep2.setType( "jar" );
    
            List<Dependency> deps = new ArrayList<>();
            deps.add( dep1 );
            deps.add( dep2 );
    
            ArtifactFactory factory = container.lookup( ArtifactFactory.class );
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/work_replace_conflict_override.txt

    module example.com/n
    
    require example.com/dep v1.0.0
    replace example.com/dep => ./dep2
    -- n/n.go --
    package n
    
    import "example.com/dep"
    
    func F() {
    	dep.G()
    }
    -- dep1/go.mod --
    module example.com/dep
    -- dep1/dep.go --
    package dep
    
    func G() {
    }
    -- dep2/go.mod --
    module example.com/dep
    -- dep2/dep.go --
    package dep
    
    func G() {
    }
    -- dep3/go.mod --
    module example.com/dep
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 16 17:32:23 UTC 2021
    - 828 bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/sameCallableIdFromDependencies.kt

    package my.pack
    
    fun Any.myExt() {}
    
    // FILE: util12.kt
    package my.pack
    
    val Any.myExt: Int get() = 10
    
    // MODULE: dep2
    // FILE: util21.kt
    package my.pack
    
    fun Any.myExt2() {}
    
    // FILE: util22.kt
    package my.pack
    
    val Any.myExt2: Int get() = 10
    
    // MODULE: main(dep1, dep2)
    // FILE: usage.kt
    package usage
    
    import my.pack.myExt
    import my.pack.myExt2
    
    fun test(a: Any) {
        a.myExt()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Apr 29 19:19:13 UTC 2024
    - 476 bytes
    - Viewed (0)
Back to top