Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 160 for pub2 (0.2 sec)

  1. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildContinueOnMultipleFailuresIntegrationTest.groovy

            buildC = multiProjectBuild('buildC', ['sub1', 'sub2', 'sub3']) {
                buildFile << """
                    allprojects {
                        ${javaProject()}
                    }
    
                    test.dependsOn 'sub1:test', 'sub2:test', 'sub3:test'
                """
                file('sub1/src/test/java/SampleTestC_Sub1.java') << junitTestClass('SampleTestC_Sub1')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 06 13:06:27 UTC 2020
    - 5.1K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/initialization/InitScriptIntegrationTest.groovy

            output.contains("order: beforeSettings - settings.gradle - settingsEvaluated")
            output.contains("subprojects: :sub1 - :sub2")
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "can apply settings plugin from init script"() {
            given:
            createDirs("sub1", "sub2")
            def pluginBuilder = new PluginBuilder(file("plugin"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityBuildLifecycleServiceIntegrationTest.groovy

                    it.tasks.register("myTask") {
                    }
                }
            """
            ['foo', 'bar', 'included/sub1', 'included/sub2'].each { file(it).mkdirs() }
            file('included/settings.gradle') << """
                include 'sub1', 'sub2'
            """
            file('included/build.gradle') << """
                tasks.register("myTask") {
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:42:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/TaskReportTaskIntegrationTest.groovy

            buildFile << multiProjectBuild()
            createDirs("sub1", "sub2")
            settingsFile << "include 'sub1', 'sub2'"
    
            when:
            succeeds TASKS_DETAILED_REPORT_TASK
    
            then:
            output.contains("""
    $helloWorldGroupHeader
    a
    sub1:a
    sub2:a
    """)
            output.contains("""
    $otherGroupHeader
    sub1:b
    sub2:b
    c
    """)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. src/crypto/x509/example_test.go

    	}
    
    	pub, err := x509.ParsePKIXPublicKey(block.Bytes)
    	if err != nil {
    		panic("failed to parse DER encoded public key: " + err.Error())
    	}
    
    	switch pub := pub.(type) {
    	case *rsa.PublicKey:
    		fmt.Println("pub is of type RSA:", pub)
    	case *dsa.PublicKey:
    		fmt.Println("pub is of type DSA:", pub)
    	case *ecdsa.PublicKey:
    		fmt.Println("pub is of type ECDSA:", pub)
    	case ed25519.PublicKey:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 29 16:52:01 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  6. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeContinuousBuildIntegrationTest.groovy

                        org.test.Library.print("First");
                    }
                }
            """
            def mainSourceSub2 = file("sub2/src/main/java/com/example/sub2/Main.java")
            mainSourceSub2 << """
                package com.example.sub2;
    
                public class Main {
                    public static void main(String... args) {
                        org.test.Library.print("Second");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 06 08:15:28 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/ValidatingIvyPublisherTest.groovy

            def publication = new IvyNormalizedPublication("pub-name", coordinates, ivyFile(descriptor), emptySet())
    
            when:
            publisher.publish(publication, repository)
    
            then:
            def e = thrown InvalidIvyPublicationException
            e.message == "Invalid publication 'pub-name': $message."
    
            where:
            group          | name       | version         | message
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 15K bytes
    - Viewed (0)
  8. src/crypto/dsa/dsa.go

    		return false
    	}
    	if s.Sign() < 1 || s.Cmp(pub.Q) >= 0 {
    		return false
    	}
    
    	w := new(big.Int).ModInverse(s, pub.Q)
    	if w == nil {
    		return false
    	}
    
    	n := pub.Q.BitLen()
    	if n%8 != 0 {
    		return false
    	}
    	z := new(big.Int).SetBytes(hash)
    
    	u1 := new(big.Int).Mul(z, w)
    	u1.Mod(u1, pub.Q)
    	u2 := w.Mul(r, w)
    	u2.Mod(u2, pub.Q)
    	v := u1.Exp(pub.G, u1, pub.P)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/publisher/ValidatingMavenPublisherTest.groovy

            def publication = new MavenNormalizedPublication("pub-name", projectIdentity, "pom", createPomFile(projectIdentity), null, emptySet())
    
            when:
            publisher.publish(publication, repository)
    
            then:
            def e = thrown InvalidMavenPublicationException
            e.message == "Invalid publication 'pub-name': $message."
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12K bytes
    - Viewed (0)
  10. src/crypto/internal/boring/notboring.go

    	panic("boringcrypto: not available")
    }
    func EncryptRSAOAEP(h, mgfHash hash.Hash, pub *PublicKeyRSA, msg, label []byte) ([]byte, error) {
    	panic("boringcrypto: not available")
    }
    func EncryptRSAPKCS1(pub *PublicKeyRSA, msg []byte) ([]byte, error) {
    	panic("boringcrypto: not available")
    }
    func EncryptRSANoPadding(pub *PublicKeyRSA, msg []byte) ([]byte, error) {
    	panic("boringcrypto: not available")
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top