Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 66 for parseFrom (0.14 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishSnapshotIntegTest.groovy

            module.assertArtifactsPublished(initialArtifacts + ["maven-metadata.xml"])
    
            and:
            module.parsedPom.version == '1.0-SNAPSHOT'
    
            with (module.rootMetaData) {
                groupId == "org.gradle"
                artifactId == "snapshotPublish"
                releaseVersion == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 12:20:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishFeaturesJavaIntegTest.groovy

                dependency('org', 'optionaldep', '1.0')
                noMoreDependencies()
            }
            javaLibrary.parsedPom.scope('compile') {
                assertOptionalDependencies('org:optionaldep:1.0')
            }
            javaLibrary.parsedPom.hasNoScope('runtime')
    
            and:
            resolveArtifacts(javaLibrary) { expectFiles "publishTest-1.9.jar" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenJavaModule.groovy

                assert parsedPom.scopes."$mavenScope" == null
            } else {
                assert parsedModuleMetadata.variant(variantName(feature, variant)).dependencies*.coords as Set == (additionalGMMDependencies*.coords as Set) + (expected as Set)
                parsedPom.scopes."$mavenScope".assertDependsOn(mavenizeDependencies(expected))
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishWarProjectIntegTest.groovy

            file('build/libs/project1-1.9.war').assertExists()
    
            when:
            run "publish"
    
            then:
            webModule.assertPublishedAsWebModule()
            webModule.parsedPom.scopes.isEmpty()
            webModule.parsedModuleMetadata.variant("master").dependencies.isEmpty()
    
            and:
            resolveArtifacts(webModule) { expectFiles "project1-1.9.war" }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppApplicationPublishingIntegrationTest.groovy

            appModule.assertPublished()
    
            def appDebugModule = mavenRepo.module('some.group', 'app_debug', '1.2')
            appDebugModule.assertPublished()
            appDebugModule.parsedPom.scopes.size() == 1
            appDebugModule.parsedPom.scopes.runtime.assertDependsOn("some.group:greeter:1.2")
    
            def appDebugMetadata = appDebugModule.parsedModuleMetadata
            def appDebugRuntime = appDebugMetadata.variant("debugRuntime")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginPublishingIntegrationTest.groovy

                marker.assertPublished()
                assert marker.parsedPom.scopes['compile'].expectDependency('com.example:plugins:1.0')
            }
            with(fooMarker.parsedPom) {
                it.name == 'The Foo Plugin'
                it.description == 'The greatest Foo plugin of all time.'
            }
            with(barMarker.parsedPom) {
                it.name == 'The Bar Plugin'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 13:07:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishJavaIntegTest.groovy

            run "publish"
    
            then:
            outputDoesNotContain(MavenComponentParser.PUBLICATION_WARNING_FOOTER)
            javaLibrary.assertPublished()
    
            javaLibrary.parsedPom.scopes.keySet() == ["runtime"] as Set
            javaLibrary.parsedPom.scopes.runtime.assertDependsOn("commons-collections:commons-collections:1.0")
    
            and:
            javaLibrary.parsedModuleMetadata.variant("apiElements") {
                noMoreDependencies()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishDependenciesIntegTest.groovy

            then: "wildcard exclusions are applied to the dependencies"
            repoModule.assertApiDependencies('org.test:non-transitive:1.0', 'org.test:artifact-only:1.0')
    
            def pom = repoModule.parsedPom
            ['non-transitive', 'artifact-only'].each {
                def exclusions = pom.scopes.compile.dependencies["org.test:${it}:1.0"].exclusions
                assert exclusions.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 16:29:10 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/rsc.io/markdown/table.go

    	t := &Table{
    		Position: pos,
    	}
    	width := tableCount(b.hdr)
    	t.Header = b.parseRow(p, b.hdr, pos.StartLine, width)
    	t.Align = b.parseAlign(b.delim, width)
    	t.Rows = make([][]*Text, len(b.rows))
    	for i, row := range b.rows {
    		t.Rows[i] = b.parseRow(p, row, pos.StartLine+2+i, width)
    	}
    	return t
    }
    
    func (b *tableBuilder) parseRow(p buildState, row tableTrimmed, line int, width int) []*Text {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  10. src/net/http/cgi/cgi_main.go

    // test cases in host_test should be provided by testCGI.
    func testCGI() {
    	req, err := Request()
    	if err != nil {
    		panic(err)
    	}
    
    	err = req.ParseForm()
    	if err != nil {
    		panic(err)
    	}
    
    	params := req.Form
    	if params.Get("loc") != "" {
    		fmt.Printf("Location: %s\r\n\r\n", params.Get("loc"))
    		return
    	}
    
    	fmt.Printf("Content-Type: text/html\r\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top