Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for AAAAAAAA (0.13 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/verifier/DependencyVerifierBuilderTest.groovy

            println(ex.getMessage())
    
            where:
            name                  | keyIds
            "short id"            | ["AAAAAAA"]
            "long id"             | ["AAAAAAAAAAAAAA"]
            "mixed short/long id" | ["AAAAAAAA", "AAAAAAAAAAAAAA"]
        }
    
        def "ArtifactVerificationBuilder should fail if trusted GPG key is not a fingerprint but a #name"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. platforms/software/security/src/test/groovy/org/gradle/plugins/signing/signatory/pgp/PgpKeyIdSpec.groovy

            expect:
            key(hex).asLong == decimal
            key(decimal).asHex == hex
    
            where:
            hex        | decimal
            "AAAAAAAA" | 2863311530
            "DA124B92" | 3658632082
        }
    
        def "equals impl"() {
            expect:
            key("AAAAAAAA") == key(2863311530)
        }
    
        def "comparison"() {
            expect:
            key("00000000") < key("00000001")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. test/fixedbugs/issue57823.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"runtime"
    	"unsafe"
    )
    
    //go:noinline
    func g(x *byte) *byte { return x }
    
    func main() {
    	slice()
    	str("AAAAAAAA", "BBBBBBBBB")
    }
    
    func wait(done <-chan struct{}) bool {
    	for i := 0; i < 10; i++ {
    		runtime.GC()
    		select {
    		case <-done:
    			return true
    		default:
    		}
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 01:27:21 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/software/signing/src/test/groovy/org/gradle/plugins/signing/SignatoriesConfigurationSpec.groovy

            signing.signatories.custom.keyId == properties.keyId
        }
    
        def "trying to read non existent file produces reasonable error message"() {
            when:
            project.ext["signing.keyId"] = "aaaaaaaa"
            project.ext["signing.secretKeyRingFile"] = "i/dont/exist"
            project.ext["signing.password"] = "anything"
    
            and:
            signing.signatory
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top