Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for proj2 (0.05 sec)

  1. subprojects/diagnostics/src/integTest/resources/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest/listsEnumAndBooleanCmdOptionValues/settings.gradle

    include ':proj1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 10:43:03 UTC 2023
    - 34 bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/execution/selection/DefaultBuildTaskSelectorTest.groovy

            "progx:task"    | "Cannot locate tasks that match 'progx:task' as project 'progx' not found in <default project>. Some candidates are: 'proj'."
        }
    
        def "fails on ambiguous project"() {
            withIncludedBuilds(includedBuild("proj1"))
            addProject(root, "proj2")
            addProject(root, "proj3")
    
            when:
            selector.resolveTaskName(null, null, target, ":pr:task")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/HelpTaskIntegrationTest.groovy

            )
        }
    
        def "listsEnumAndBooleanCmdOptionValues"() {
            createDirs("proj1", "proj2")
            when:
            run "help", "--task", "hello"
            then:
            output.contains """Detailed task information for hello
    
    Paths
         :hello
         :proj1:hello
         :proj2:hello
    
    Type
         CustomTask (CustomTask)
    
    Options
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 14K bytes
    - Viewed (0)
  4. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskErrorExecutionIntegrationTest.groovy

                additionalData.asMap == ['requestedPath' : 'prog:someTask']
            }
        }
    
        def "reports ambiguous project"() {
            enableProblemsApiCheck()
            createDirs("projA", "projB")
            settingsFile << """
                rootProject.name = 'test'
                include 'projA', 'projB'
            """
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/ResourceVersionListerTest.groovy

            "/[module]/[revision]"                        | "/proj1/"
            "/[module]/[revision]-lib.[ext]"              | "/proj1/"
            "/[organisation]/[module]/[revision]"         | "/org.acme/proj1/"
            "/[revision]/[module]/[organisation]"         | "/"
            "/[type]s/[module]/[organisation]/[revision]" | "/jars/proj1/org.acme/"
        }
    
        def "produces no result when pattern has no revision token"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. src/cmd/covdata/testdata/prog2.go

    Than McIntosh <******@****.***> 1634828243 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:47:16 UTC 2022
    - 396 bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/HttpScriptPluginIntegrationSpec.groovy

            and:
            settingsFile << """
                include ':projA'
                include ':projB'
            """
    
            and:
            [file('settings.gradle'), file('init.gradle'), file("projA/build.gradle"), file("projB/build.gradle")].each {
                it << "apply from: '${server.uri}/${scriptName}'"
            }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 30 08:26:30 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/BuildScriptVisibilityIntegrationTest.groovy

            buildFile << """
    def getProp1() {
        return "abc"
    }
    
    @groovy.transform.Field
    String prop2
    
    @groovy.transform.Field
    String prop3 = "abc"
    
    int prop4 = 12
    
    prop2 = prop1
    
    assert prop1 == "abc"
    assert prop2 == "abc"
    assert prop3 == "abc"
    assert prop4 == 12
    """
            file("child1/build.gradle") << """
    try {
        prop1
        assert false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  9. testing/integ-test/src/integTest/groovy/org/gradle/integtests/environment/BuildEnvironmentIntegrationTest.groovy

                }
            """
            if (!GradleContextualExecuter.configCache) {
                buildFile << """
                    println('prop2=' + System.getProperty('prop2'))
                """
            } else {
                buildFile << """
                    println('prop2=' + providers.systemProperty('prop2').orNull)
                """
            }
    
            when:
            executer.withArguments("-Dprop1=some-value")
            run("show")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. utils/utils_unix_test.go

    			want: "/Users/name/go/pkg/mod/gorm.io/",
    		},
    		{
    			file: "/go/work/proj/gorm/utils/utils.go",
    			want: "/go/work/proj/gorm/",
    		},
    		{
    			file: "/go/work/proj/gorm_alias/utils/utils.go",
    			want: "/go/work/proj/gorm_alias/",
    		},
    		{
    			file: "/go/work/proj/my.gorm.io/gorm@v1.2.3/utils/utils.go",
    			want: "/go/work/proj/my.gorm.io/gorm@v1.2.3/",
    		},
    	}
    	for _, c := range cases {
    		s := sourceDir(c.file)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Nov 21 02:48:13 UTC 2022
    - 731 bytes
    - Viewed (0)
Back to top