Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 145 for Dep (0.18 sec)

  1. src/cmd/cgo/internal/testshared/testdata/depBase/dep.go

    }
    
    var Initialized bool
    
    var SlicePtr interface{} = &[]int{}
    
    var V int = 1
    
    var HasMask []string = []string{"hi"}
    
    type HasProg struct {
    	array [1024]*byte
    }
    
    type Dep struct {
    	X int
    }
    
    func (d *Dep) Method() int {
    	// This code below causes various go.itab.* symbols to be generated in
    	// the shared library. Similar code in ../exe/exe.go results in
    	// exercising https://golang.org/issues/17594
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 1K bytes
    - Viewed (0)
  2. src/cmd/covdata/testdata/dep.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package dep
    
    func Dep1() int {
    	return 42
    }
    
    func PDep(x int) {
    	if x != 1010101 {
    		println(x)
    	} else {
    		panic("bad")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:47:16 UTC 2022
    - 286 bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testshared/testdata/depBaseInternal/dep.go

    Cherry Mui <******@****.***> 1692229744 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:46:11 UTC 2023
    - 292 bytes
    - Viewed (0)
  4. maven-model-builder/src/test/resources/poms/depmgmt/root-dep-last.xml

    Tamas Cservenak <******@****.***> 1706804704 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 951 bytes
    - Viewed (0)
  5. maven-model-builder/src/test/resources/poms/depmgmt/root-dep-first.xml

    Tamas Cservenak <******@****.***> 1706804704 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 951 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ResolutionResultGraphBuilderSpec.groovy

            node("leaf1")
            node("leaf2")
            node("leaf3")
            node("leaf4")
    
            resolvedConf("root", [dep("root", "mid1"), dep("root", "mid2")])
    
            resolvedConf("mid1", [dep("mid1", "leaf1"), dep("mid1", "leaf2")])
            resolvedConf("mid2", [dep("mid2", "leaf3"), dep("mid2", "leaf4")])
    
            resolvedConf("leaf1", [])
            resolvedConf("leaf2", [])
            resolvedConf("leaf3", [])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenPom.groovy

                }
    
            }
            new MavenDependency(
                groupId: dep.groupId.text(),
                artifactId: dep.artifactId.text(),
                version: dep.version.text(),
                classifier: dep.classifier ? dep.classifier.text() : null,
                type: dep.type ? dep.type.text() : null,
                exclusions: exclusions,
                optional: optional
            )
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_go_version_missing.txt

    require example.com/dep v0.1.0
    
    replace (
    	example.com/dep v0.1.0 => ./dep
    	example.com/testdep v0.1.0 => ./testdep
    )
    -- vendor/example.com/dep/dep.go --
    package dep
    import _ "example.com/badedit"
    -- vendor/modules.txt --
    HAHAHA this is broken.
    
    -- m.go --
    package m
    
    import _ "example.com/dep"
    
    const x = 1_000
    
    -- dep/go.mod --
    module example.com/dep
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 16:11:33 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/build_pgo_auto_multi.txt

    # Here we want to match a compile action without -pgoprofile,
    # 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'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:38:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/work_disablevendor.txt

    func main() {
    	dep.Dep()
    }
    -- workspace/go.mod --
    module example.com/mod
    
    go 1.20
    
    require example.com/dep v1.0.0
    -- workspace/vendor/example.com/dep/dep.go --
    package dep
    
    import "fmt"
    
    func Dep() {
    	fmt.Println("the vendored dep")
    }
    -- workspace/vendor/modules.txt --
    # example.com/dep v1.0.0
    ## explicit
    example.com/dep
    -- dep/go.mod --
    module example.com/dep
    -- dep/dep.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 20:22:29 UTC 2022
    - 1K bytes
    - Viewed (0)
Back to top