Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 162 for Dep (0.05 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/go/testdata/script/mod_vendor_embed.txt

    module example.com/foo
    go 1.16
    
    require (
    	example.com/dep v0.1.0
    )
    
    replace (
    	example.com/dep v0.1.0 => ./dep
    )
    -- embed_unbuilt/foo.go --
    package a
    
    import _ "example.com/dep"
    
    func F() {}
    -- embed_unbuilt/dep/go.mod --
    module example.com/dep
    go 1.16
    -- embed_unbuilt/dep/dep.go --
    package dep
    
    import _ "embed"
    
    //go:embed unbuilt.go
    var unbuilt string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:14:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents/build.gradle

    <%
    components.each { component ->
        out.println """
            ${component.name}(${component.type}) {
                binaries.all {"""
        component.deps.each { dep ->
            out.println """
                    lib project: '${dep.project}', library: '${dep.library}', linkage: '${dep.linkage}'"""
        }
        out.println """    
                }
            }"""
    }
    %>
        }
    
        testSuites {
    <%
    components.each { component ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. tools/istio-clean-iptables/pkg/cmd/cleanup.go

    	"istio.io/istio/tools/istio-iptables/pkg/constants"
    	dep "istio.io/istio/tools/istio-iptables/pkg/dependencies"
    )
    
    func NewDependencies(cfg *config.Config) dep.Dependencies {
    	if cfg.DryRun {
    		return &dep.DependenciesStub{}
    	}
    	return &dep.RealDependencies{}
    }
    
    type IptablesCleaner struct {
    	ext   dep.Dependencies
    	cfg   *config.Config
    	iptV  *dep.IptablesVersion
    	ipt6V *dep.IptablesVersion
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. hack/pin-dependency.sh

    export GOWORK=off
    export GOFLAGS=-mod=mod
    
    dep="${1:-}"
    sha="${2:-}"
    
    # Specifying a different repo is optional.
    replacement=
    case ${dep} in
        *=*)
            # shellcheck disable=SC2001
            replacement=$(echo "${dep}" | sed -e 's/.*=//')
            # shellcheck disable=SC2001
            dep=$(echo "${dep}" | sed -e 's/=.*//')
            ;;
        *)
            replacement="${dep}"
            ;;
    esac
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 05:44:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top