Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 160 for pub2 (0.05 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/TestLauncherTaskExecutionCrossVersionSpec.groovy

            setup:
            settingsFile << '''
                rootProject.name = 'root'
                include 'sub1'
                include 'sub1:sub2'
            '''
            buildFile << '''
                allprojects {
                    tasks.register('foo')
                }
            '''
            file('sub1/sub2').mkdirs()
    
            when:
            launchTestWithTestFilter(toolingApi.connector().forProjectDirectory(projectDir.file('sub1'))) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r26/TestLauncherCrossVersionSpec.groovy

        }
    
        def "runs all test tasks in multi project build when test class passed by name"() {
            setup:
            settingsFile << "include ':sub1', 'sub2', ':sub2:sub3', ':sub4'"
            ["sub1", "sub2/sub3"].each { projectFolderName ->
                file("${projectFolderName}/src/test/java/example/MyTest.java") << """
                    package example;
                    public class MyTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  3. gradle/verification-keyring.keys

    pub    80662F8192D749A0
    uid    Adam Gent <******@****.***>
    
    sub    8067ECAA8D58321C
    -----BEGIN PGP PUBLIC KEY BLOCK-----
    Version: BCPG v1.68
    
    mQENBE1Hdr8BCACnwSb6j+eHyhhe4RJzAW2BqlYSdxfIsjdaTGm3V6GcPzd3JMvO
    /PufaPZ4OXVHCwdU2op7qEHkM3GkLIxUx3ZuZhuirdoatW8VjykshDx6/IsTQ7Jr
    J+hLS6SdnhS7KrbiLeC4fmeXkAVow09spSgTufhd+fqZ8RV2gbmfgvxOOf1NK8WZ
    7E3Tkm7y6Rbz0DHrSqPYd28Od/3fKogFHHIE/srnAR7MEBf3HfEDJk4xTvH3sQ4+
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 525.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_json_prints.txt

    stdout '"Action":"output","Package":"p","Test":"Test/Sub1","Output":"Sub1    x_test.go:19: SubLog1\\n"}'
    stdout '"Action":"output","Package":"p","Test":"Test/Sub1","Output":"Sub2"}'
    stdout '"Action":"output","Package":"p","Test":"Test/Sub1","Output":"--- PASS: Test/Sub1 \([\d.]+s\)\\n"}'
    stdout '"Action":"pass","Package":"p","Test":"Test/Sub1","Elapsed"'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  5. src/crypto/x509/pkcs1.go

    		return nil, asn1.SyntaxError{Msg: "trailing data"}
    	}
    
    	if pub.N.Sign() <= 0 || pub.E <= 0 {
    		return nil, errors.New("x509: public key contains zero or negative value")
    	}
    	if pub.E > 1<<31-1 {
    		return nil, errors.New("x509: public key contains large public exponent")
    	}
    
    	return &rsa.PublicKey{
    		E: pub.E,
    		N: pub.N,
    	}, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. src/cmd/go/internal/vcs/discovery_test.go

    	        `,
    		IgnoreMod,
    		[]metaImport{{"myitcv.io", "git", "https://github.com/myitcv/x"}},
    	},
    	{
    		`<meta name="go-import" content="myitcv.io git https://github.com/myitcv/x">
    	        <meta name="go-import" content="myitcv.io/blah2 mod https://raw.githubusercontent.com/myitcv/pubx/master">
    	        `,
    		PreferMod,
    		[]metaImport{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 11 18:14:49 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  7. platforms/jvm/jvm-services/src/integTest/groovy/org/gradle/jvm/toolchain/InvalidJvmInstallationReportingIntegrationTest.groovy

                    jvmArgs = ['-version']
                }
                """
    
            multiProjectBuild("invalidJvmInstallationReporting", ["sub1", "sub2"]) {
                project("sub1").buildFile << configureJavaExecToUseToolchains
                project("sub2").buildFile << configureJavaExecToUseToolchains
            }
    
            when: "running two consecutive builds in a daemon"
            def results = (0..1).collect {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publication/DefaultMavenPublicationTest.groovy

            projectDependency.getArtifacts() >> []
            projectDependency.getGroup() >> "pub-group"
            projectDependency.getName() >> "pub-name"
            projectDependencyResolver.resolveComponent(ModuleVersionIdentifier, projectDependency.identityPath) >> DefaultModuleVersionIdentifier.newId("pub-group", "pub-name", "pub-version")
    
            when:
            publication.from(componentWithDependency(projectDependency))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 01:33:41 UTC 2023
    - 24.8K bytes
    - Viewed (0)
  9. src/crypto/x509/boring_test.go

    		pcert = parent.cert
    		pkey = parent.key
    	} else {
    		pcert = tmpl
    		pkey = key
    	}
    
    	var pub interface{}
    	var desc string
    	switch k := key.(type) {
    	case *rsa.PrivateKey:
    		pub = &k.PublicKey
    		desc = fmt.Sprintf("RSA-%d", k.N.BitLen())
    	case *ecdsa.PrivateKey:
    		pub = &k.PublicKey
    		desc = "ECDSA-" + k.Curve.Params().Name
    	default:
    		t.Fatalf("invalid key %T", key)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 17 17:38:47 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  10. platforms/software/publish/src/test/groovy/org/gradle/api/publish/internal/DefaultPublicationContainerTest.groovy

            given:
            Publication pub = publication("test")
            NamedDomainObjectFactory<Publication> factory = Mock()
            container.registerFactory(Publication, factory)
    
            when:
            container.create("name", Publication) {
                value = 2
            }
    
            then:
            1 * factory.create("name") >> pub
    
            and:
            container.getByName("test") == pub
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top