Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 96 for Dep (0.57 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/AbstractMavenModule.groovy

                                        if (dep.type) {
                                            type(dep.type)
                                        }
                                        if (dep.scope) {
                                            scope(dep.scope)
                                        }
                                        if (dep.classifier) {
                                            classifier(dep.classifier)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  8. maven-compat/src/test/java/org/apache/maven/project/artifact/MavenMetadataSourceTest.java

            String groupId = "org.apache.maven";
            String artifactId = "maven-model";
    
            Dependency dep = new Dependency();
    
            dep.setGroupId( groupId );
            dep.setArtifactId( artifactId );
            dep.setVersion( "2.0-alpha-3" );
    
            Model model = new Model();
    
            model.addDependency( dep );
    
            MavenProject project = new MavenProject( model, repositorySystem );
    
    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. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/SelfResolvingDependencyIntegrationTest.groovy

    }
    
    task verify {
        doLast {
            def dep = configurations.compile.dependencies.find { it instanceof FileCollectionDependency }
            println "files: " + dep.files.files.collect { it.name }
            println "resolve: " + dep.resolve().collect { it.name }
            println "resolve-not-transitive: " + dep.resolve(false).collect { it.name }
            println "resolve-transitive: " + dep.resolve(true).collect { it.name }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyFileModule.groovy

            def classifier = dep.classifier
            def depAttrs = [org: dep.organisation, name: dep.module, rev: dep.revision, conf: conf]
            if (dep.revConstraint) {
                depAttrs.revConstraint = dep.revConstraint
            }
            builder.dependency(depAttrs) {
                if (dep.exclusions) {
                    for (exc in dep.exclusions) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top