Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 261 for msign (0.07 sec)

  1. platforms/documentation/docs/src/docs/dsl/org.gradle.plugins.signing.Sign.xml

                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>signatory</td>
                </tr>
                <tr>
                    <td>sign</td>
                </tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 650 bytes
    - Viewed (0)
  2. src/crypto/internal/edwards25519/edwards25519_test.go

    	}
    	tests := []test{
    		// Points with x = 0 and the sign bit set. With x = 0 the curve equation
    		// gives y² = 1, so y = ±1. 1 has two valid encodings.
    		{
    			"y=1,sign-",
    			"0100000000000000000000000000000000000000000000000000000000000080",
    			"0100000000000000000000000000000000000000000000000000000000000000",
    		},
    		{
    			"y=p+1,sign-",
    			"eeffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 10 18:45:00 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  3. src/math/bits.go

    	return f != f
    }
    
    // IsInf reports whether f is an infinity, according to sign.
    // If sign > 0, IsInf reports whether f is positive infinity.
    // If sign < 0, IsInf reports whether f is negative infinity.
    // If sign == 0, IsInf reports whether f is either infinity.
    func IsInf(f float64, sign int) bool {
    	// Test for infinity by comparing against maximum float.
    	// To avoid the floating-point hardware, could use:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  4. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningConfigurationsIntegrationSpec.groovy

            then:
            executedAndNotSkipped ":signArchives", ":signMeta"
    
            and:
            file("build", "libs", "sign-1.0.jar.asc").text
            file("build", "libs", "sign-1.0-javadoc.jar.asc").text
            file("build", "libs", "sign-1.0-sources.jar.asc").text
        }
    
        def "configurations are signed when executing assemble task"() {
            given:
            buildFile << """
                configurations {
                    meta
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. src/go/build/constraint/vers.go

    // implied by expression z, or if sign < 0, by expression !z.
    func minVersion(z Expr, sign int) int {
    	switch z := z.(type) {
    	default:
    		return -1
    	case *AndExpr:
    		op := andVersion
    		if sign < 0 {
    			op = orVersion
    		}
    		return op(minVersion(z.X, sign), minVersion(z.Y, sign))
    	case *OrExpr:
    		op := orVersion
    		if sign < 0 {
    			op = andVersion
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:19:00 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningClosureBlockIntegrationSpec.groovy

                ${keyInfo.addAsPropertiesScript()}
    
                signing {
                    sign {
                        sign(tasks.jar)
                    }
                }
            """
    
            when:
            run "sign"
    
            then:
            executedAndNotSkipped ":signJar"
    
            and:
            file("build", "libs", "sign-1.0.jar.asc").text
        }
    
        def "use kotlin action when signing"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningTasksIntegrationSpec.groovy

                    sign jar, javadocJar, sourcesJar
                }
            """
    
            when:
            run "signJar", "signJavadocJar", "signSourcesJar"
    
            then:
            executedAndNotSkipped(":signJar", ":signJavadocJar", ":signSourcesJar")
    
            and:
            file("build", "libs", "sign-1.0.jar.asc").text
            file("build", "libs", "sign-1.0-javadoc.jar.asc").text
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 8K bytes
    - Viewed (0)
  8. platforms/software/signing/src/test/groovy/org/gradle/plugins/signing/SigningTasksSpec.groovy

        def setup() {
            applyPlugin()
        }
    
        def "sign jar with defaults"() {
            given:
            useJavadocAndSourceJars()
            createJarTaskOutputFile('jar', 'sourcesJar', 'javadocJar')
    
            when:
            signing {
                sign jar
                sign sourcesJar, javadocJar
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. src/math/floor_amd64.s

    TEXT ·archCeil(SB),NOSPLIT,$0
    	MOVQ	x+0(FP), AX
    	MOVQ	$~(1<<63), DX // sign bit mask
    	MOVQ	AX, BX // BX = copy of x
    	ANDQ    DX, BX // BX = |x|
    	MOVQ    $Big, CX // if |x| >= 2**52 or IsNaN(x), return x
    	CMPQ    BX, CX
    	JAE     isBig_ceil
    	MOVQ	AX, X0 // X0 = x
    	MOVQ	DX, X2 // X2 = sign bit mask
    	CVTTSD2SQ	X0, AX
    	ANDNPD	X0, X2 // X2 = sign
    	CVTSQ2SD	AX, X1	// X1 = float(int(x))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 2K bytes
    - Viewed (0)
  10. platforms/software/signing/src/test/groovy/org/gradle/plugins/signing/SignOperationSpec.groovy

        }
        
        def "sign single file with defaults"() {
            when:
            def operation = signing.sign(input1)
            
            then:
            output1.exists()
            output1 == operation.singleSignature.file
        }
        
        def "sign single artifact with defaults"() {
            when:
            def operation = signing.sign(input1Artifact)
            
            then:
            output1.exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top