Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 664 for msign (0.07 sec)

  1. src/math/asinh.go

    //
    //
    // asinh(x)
    // Method :
    //	Based on
    //	        asinh(x) = sign(x) * log [ |x| + sqrt(x*x+1) ]
    //	we have
    //	asinh(x) := x  if  1+x*x=1,
    //	         := sign(x)*(log(x)+ln2) for large |x|, else
    //	         := sign(x)*log(2|x|+1/(|x|+sqrt(x*x+1))) if|x|>2, else
    //	         := sign(x)*log1p(|x| + x**2/(1 + sqrt(1+x**2)))
    //
    
    // Asinh returns the inverse hyperbolic sine of x.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 20:02:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_signing.adoc

    Here's an example that configures the plugin to sign the `mavenJava` publication:
    
    .Signing a publication
    ====
    include::sample[dir="snippets/signing/maven-publish/kotlin",files="build.gradle.kts[tags=sign-publication]"]
    include::sample[dir="snippets/signing/maven-publish/groovy",files="build.gradle[tags=sign-publication]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. src/math/copysign.go

    // license that can be found in the LICENSE file.
    
    package math
    
    // Copysign returns a value with the magnitude of f
    // and the sign of sign.
    func Copysign(f, sign float64) float64 {
    	const signBit = 1 << 63
    	return Float64frombits(Float64bits(f)&^signBit | Float64bits(sign)&signBit)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 14 17:42:53 UTC 2022
    - 396 bytes
    - Viewed (0)
  4. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningDistributionsIntegrationSpec.groovy

            when:
            run "buildSignatures"
    
            then:
            executedAndNotSkipped ":signArchives"
    
            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
            file("build", "distributions", "main-1.0.zip.asc").text
            file("build", "distributions", "main-1.0.tar.asc").text
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/signing/tasks/kotlin/build.gradle.kts

    extra["signing.password"] = "gradle"
    extra["signing.secretKeyRingFile"] = file("secKeyRingFile.gpg").absolutePath
    
    // tag::sign-task[]
    tasks.register<Zip>("stuffZip") {
        archiveBaseName = "stuff"
        from("src/stuff")
    }
    
    signing {
        sign(tasks["stuffZip"])
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 393 bytes
    - Viewed (0)
  6. src/crypto/dsa/dsa.go

    // truncation itself.
    //
    // Be aware that calling Sign with an attacker-controlled [PrivateKey] may
    // require an arbitrary amount of CPU.
    func Sign(rand io.Reader, priv *PrivateKey, hash []byte) (r, s *big.Int, err error) {
    	randutil.MaybeReadByte(rand)
    
    	// FIPS 186-3, section 4.6
    
    	n := priv.Q.BitLen()
    	if priv.Q.Sign() <= 0 || priv.P.Sign() <= 0 || priv.G.Sign() <= 0 || priv.X.Sign() <= 0 || n%8 != 0 {
    		err = ErrInvalidPublicKey
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  7. src/math/erf.go

    			y := r / s
    			temp = x + x*y
    		}
    		if sign {
    			return -temp
    		}
    		return temp
    	}
    	if x < 1.25 { // 0.84375 <= |x| < 1.25
    		s := x - 1
    		P := pa0 + s*(pa1+s*(pa2+s*(pa3+s*(pa4+s*(pa5+s*pa6)))))
    		Q := 1 + s*(qa1+s*(qa2+s*(qa3+s*(qa4+s*(qa5+s*qa6)))))
    		if sign {
    			return -erx - P/Q
    		}
    		return erx + P/Q
    	}
    	if x >= 6 { // inf > |x| >= 6
    		if sign {
    			return -1
    		}
    		return 1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/signing/tasks/groovy/build.gradle

    project.ext['signing.password'] = 'gradle'
    project.ext['signing.secretKeyRingFile'] = file('secKeyRingFile.gpg').absolutePath
    
    // tag::sign-task[]
    tasks.register('stuffZip', Zip) {
        archiveBaseName = 'stuff'
        from 'src/stuff'
    }
    
    signing {
        sign stuffZip
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 405 bytes
    - Viewed (0)
  9. src/runtime/softfloat64.go

    			mant++
    		}
    		mant >>= 1
    		exp++
    		if mant < 1<<mantbits64 {
    			return sign | mant
    		}
    	}
    	return sign | uint64(exp-bias64)<<mantbits64 | mant&(1<<mantbits64-1)
    }
    
    func fpack32(sign, mant uint32, exp int, trunc uint32) uint32 {
    	mant0, exp0, trunc0 := mant, exp, trunc
    	if mant == 0 {
    		return sign
    	}
    	for mant < 1<<mantbits32 {
    		mant <<= 1
    		exp--
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 17:58:41 UTC 2021
    - 11.5K bytes
    - Viewed (0)
  10. src/crypto/ecdsa/ecdsa_s390x.s

    	BLT  error       // condition code of 1 indicates a failure
    
    success:
    	MOVD $0, errn+16(FP) // return 0 - sign/verify was successful
    	RET
    
    error:
    	MOVD $1, errn+16(FP) // return 1 - sign/verify failed
    	RET
    
    retry:
    	MOVD $2, errn+16(FP) // return 2 - sign/verify was unsuccessful -- if sign, retry with new RN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 891 bytes
    - Viewed (0)
Back to top