Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for proj2 (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/test/java/jcifs/tests/ContextConfigTest.java

            assertEquals(DialectVersion.SMB302, p1.getMaximumVersion());
    
            Properties prop2 = new Properties();
            prop2.setProperty("jcifs.smb.client.maxVersion", "SMB302");
            prop2.setProperty("jcifs.smb.client.minVersion", "SMB311");
            PropertyConfiguration p2 = new PropertyConfiguration(prop2);
            assertEquals(DialectVersion.SMB311, p2.getMinimumVersion());
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  6. src/crypto/internal/edwards25519/edwards25519.go

    	copy(buf[:], v.Bytes())
    	return buf[:]
    }
    
    // Conversions.
    
    func (v *projP2) FromP1xP1(p *projP1xP1) *projP2 {
    	v.X.Multiply(&p.X, &p.T)
    	v.Y.Multiply(&p.Y, &p.Z)
    	v.Z.Multiply(&p.Z, &p.T)
    	return v
    }
    
    func (v *projP2) FromP3(p *Point) *projP2 {
    	v.X.Set(&p.x)
    	v.Y.Set(&p.y)
    	v.Z.Set(&p.z)
    	return v
    }
    
    func (v *Point) fromP1xP1(p *projP1xP1) *Point {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 13 19:21:54 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/subst.go

    	assert(len(tpars) == len(targs))
    	proj := make(substMap, len(tpars))
    	for i, tpar := range tpars {
    		proj[tpar] = targs[i]
    	}
    	return proj
    }
    
    // makeRenameMap is like makeSubstMap, but creates a map used to rename type
    // parameters in from with the type parameters in to.
    func makeRenameMap(from, to []*TypeParam) substMap {
    	assert(len(from) == len(to))
    	proj := make(substMap, len(from))
    	for i, tpar := range from {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. src/go/types/subst.go

    	assert(len(tpars) == len(targs))
    	proj := make(substMap, len(tpars))
    	for i, tpar := range tpars {
    		proj[tpar] = targs[i]
    	}
    	return proj
    }
    
    // makeRenameMap is like makeSubstMap, but creates a map used to rename type
    // parameters in from with the type parameters in to.
    func makeRenameMap(from, to []*TypeParam) substMap {
    	assert(len(from) == len(to))
    	proj := make(substMap, len(from))
    	for i, tpar := range from {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocRendererTest.groovy

            PropertyDoc incubatingProp = propertyDoc('incubatingProperty', id: 'prop2', description: 'prop2 description', comment: 'prop2 comment', type: 'org.gradle.Type', incubating: true)
            _ * classDoc.classProperties >> [deprecatedProp, incubatingProp]
            _ * classDoc.classMethods >> []
            _ * classDoc.classBlocks >> []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 40.8K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/main/java/org/gradleinternal/buildinit/plugins/internal/maven/Maven2Gradle.java

            return projects.stream().filter(project -> {
                Optional<MavenProject> parentIsPartOfThisBuild = projects.stream().filter(proj ->
                    project.getParent() == null || (project.getParent() != null && proj.getArtifactId().equals(project.getParent().getArtifactId()) && proj.getGroupId().equals(project.getParent().getGroupId()))
                ).findFirst();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 27.8K bytes
    - Viewed (0)
Back to top