Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,260 for anotherOk (0.24 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/declaring_dependencies_between_subprojects.adoc

    What if one subproject depends on another subproject?
    What if one project needs the artifact produced by another project?
    
    image::structuring-builds-2.png[]
    
    This is a common use case for multi-project builds.
    Gradle offers <<declaring_dependencies.adoc#sub:project_dependencies,project dependencies>> for this.
    
    [[sec:project_jar_dependencies]]
    == Depending on another project
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 21:54:47 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/cover_build_cmdline_pkgs.txt

    stdout cmd/nm
    ! stdout cmd/internal/goobj pkglist.txt
    
    # ... now collect a coverage profile from a Go file
    # listed on the command line.
    go build -cover -o $WORK/another.exe testdata/another.go
    mkdir $WORK/covdata2
    env GOCOVERDIR=$WORK/covdata2
    exec $WORK/another.exe 
    
    # Restore previous GOCOVERDIR setting
    env GOCOVERDIR=$SAVEGOCOVERDIR
    
    # Check to make sure we instrumented just the main package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:17 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/vcstest/git/gitrepo1.txt

    git branch v2.3.4
    
    at 2018-04-17T16:00:19-04:00
    echo 'intermediate'
    cp stdout foo.txt
    git add foo.txt
    git commit -a -m 'intermediate'
    
    at 2018-04-17T16:00:32-04:00
    echo 'another'
    cp stdout another.txt
    git add another.txt
    git commit -a -m 'another'
    git tag v2.0.2
    
    at 2018-04-17T16:16:52-04:00
    git checkout master
    git branch v3
    git checkout v3
    mkdir v3/sub/dir
    echo 'v3/sub/dir/file'
    cp stdout v3/sub/dir/file.txt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/util/workloadinstances/index_test.go

    	wi3 := &model.WorkloadInstance{
    		Name:      "another-ip",
    		Namespace: selector.Namespace,
    		Endpoint: &model.IstioEndpoint{
    			Address: "3.3.3.3",
    			Labels:  map[string]string{"app": "another-wle"}, // should not match because of another label
    		},
    	}
    
    	wi4 := &model.WorkloadInstance{
    		Name:      "another-name",
    		Namespace: "another-namespace", // should not match because of another namespace
    		Endpoint: &model.IstioEndpoint{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modindex/syslist_test.go

    package modindex
    
    import (
    	"go/build"
    	"runtime"
    	"testing"
    )
    
    var (
    	thisOS    = runtime.GOOS
    	thisArch  = runtime.GOARCH
    	otherOS   = anotherOS()
    	otherArch = anotherArch()
    )
    
    func anotherOS() string {
    	if thisOS != "darwin" && thisOS != "ios" {
    		return "darwin"
    	}
    	return "linux"
    }
    
    func anotherArch() string {
    	if thisArch != "amd64" {
    		return "amd64"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 20:19:10 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  6. platforms/software/antlr/src/integTest/groovy/org/gradle/api/plugins/antlr/Antlr4PluginIntegrationTest.groovy

            assertGrammarSourceGenerated("Another")
            assertAntlrVersion(4)
            succeeds("build")
        }
    
        def "can import grammar from root antlr source folder"() {
            goodGrammar()
            file("grammar-builder/src/main/antlr/GrammarWithImport.g4") << """grammar GrammarWithImport;
                import Another;
                r  : 'hello' ID ;
                ID : [a-z]+ ;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  7. src/go/build/syslist_test.go

    // license that can be found in the LICENSE file.
    
    package build
    
    import (
    	"runtime"
    	"testing"
    )
    
    var (
    	thisOS    = runtime.GOOS
    	thisArch  = runtime.GOARCH
    	otherOS   = anotherOS()
    	otherArch = anotherArch()
    )
    
    func anotherOS() string {
    	if thisOS != "darwin" && thisOS != "ios" {
    		return "darwin"
    	}
    	return "linux"
    }
    
    func anotherArch() string {
    	if thisArch != "amd64" {
    		return "amd64"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 23 18:12:59 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

                requires another;
            }
            '''
            file("src/main/java/example/io/example/Example.java") << '''
                package io.example;
    
                import io.another.BaseExample;
    
                public class Example extends BaseExample {}
            '''
            file("src/main/moreJava/another/module-info.java") << 'module another { exports io.another; }'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  9. test/fixedbugs/issue47185.dir/main.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	bad "issue47185.dir/bad"
    )
    
    func main() {
    	another()
    	bad.Bad()
    }
    
    func another() L {
    	m := make(map[string]L)
    	return m[""]
    }
    
    type L struct {
    	A Data
    	B Data
    }
    
    type Data struct {
    	F1 [22][]string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 19 13:27:46 UTC 2021
    - 385 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/kotlinDsl/interoperability-groovy-builder/kotlin/build.gradle.kts

    class TargetType {
        var foo = ""
        fun name(s: String, i: Int, a: Any) {}
        fun blockName(closure: groovy.lang.Closure<*>) {}
        fun another(map: Map<String, *>) {}
    }
    
    
    val target = TargetType()
    val aReference = ""
    
    // tag::withGroovyBuilder[]
    target.withGroovyBuilder {                                          // <1>
    
        // GroovyObject methods available                               // <2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 925 bytes
    - Viewed (0)
Back to top