Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 664 for msign (0.05 sec)

  1. src/math/big/intmarsh_test.go

    }
    
    func TestIntGobEncoding(t *testing.T) {
    	var medium bytes.Buffer
    	enc := gob.NewEncoder(&medium)
    	dec := gob.NewDecoder(&medium)
    	for _, test := range encodingTests {
    		for _, sign := range []string{"", "+", "-"} {
    			x := sign + test
    			medium.Reset() // empty buffer for each test case (in case of failures)
    			var tx Int
    			tx.SetString(x, 10)
    			if err := enc.Encode(&tx); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 07 23:27:14 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  2. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SigningPlugin.java

    import org.gradle.api.plugins.BasePlugin;
    
    /**
     * Adds the ability to digitally sign files and artifacts.
     *
     * @see <a href="https://docs.gradle.org/current/userguide/signing_plugin.html">Signing plugin reference</a>
     */
    public abstract class SigningPlugin implements Plugin<Project> {
    
        /**
         * <p>Adds the ability to digitally sign files and artifacts.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. src/math/sin.go

    	}
    
    	if j > 3 {
    		j -= 4
    		sign = !sign
    	}
    	if j > 1 {
    		sign = !sign
    	}
    
    	zz := z * z
    	if j == 1 || j == 2 {
    		y = z + z*zz*((((((_sin[0]*zz)+_sin[1])*zz+_sin[2])*zz+_sin[3])*zz+_sin[4])*zz+_sin[5])
    	} else {
    		y = 1.0 - 0.5*zz + zz*zz*((((((_cos[0]*zz)+_cos[1])*zz+_cos[2])*zz+_cos[3])*zz+_cos[4])*zz+_cos[5])
    	}
    	if sign {
    		y = -y
    	}
    	return y
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  4. src/math/cbrt.go

    		SmallestNormal = 2.22507385850720138309e-308 // 2**-1022  = 0x0010000000000000
    	)
    	// special cases
    	switch {
    	case x == 0 || IsNaN(x) || IsInf(x, 0):
    		return x
    	}
    
    	sign := false
    	if x < 0 {
    		x = -x
    		sign = true
    	}
    
    	// rough cbrt to 5 bits
    	t := Float64frombits(Float64bits(x)/3 + B1<<32)
    	if x < SmallestNormal {
    		// subnormal number
    		t = float64(1 << 54) // set t= 2**54
    		t *= x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. src/math/unsafe.go

    // Float32bits returns the IEEE 754 binary representation of f,
    // with the sign bit of f and the result in the same bit position.
    // Float32bits(Float32frombits(x)) == x.
    func Float32bits(f float32) uint32 { return *(*uint32)(unsafe.Pointer(&f)) }
    
    // Float32frombits returns the floating-point number corresponding
    // to the IEEE 754 binary representation b, with the sign bit of b
    // and the result in the same bit position.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. src/math/cmplx/cmath_test.go

    	{complex(-inf, inf),
    		complex(zero, zero)}, // real and imaginary sign unspecified
    	{complex(inf, inf),
    		complex(inf, nan)}, // real sign unspecified
    	{complex(-inf, nan),
    		complex(zero, zero)}, // real and imaginary sign unspecified
    	{complex(inf, nan),
    		complex(inf, nan)}, // real sign unspecified
    	{complex(nan, zero),
    		complex(nan, zero)},
    	{complex(nan, 1.0),
    		NaN()},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 01 03:16:37 UTC 2020
    - 48.1K bytes
    - Viewed (0)
  7. src/math/big/ftoa.go

    	}
    	// len(buf) > 0
    
    	var sign string
    	switch {
    	case buf[0] == '-':
    		sign = "-"
    		buf = buf[1:]
    	case buf[0] == '+':
    		// +Inf
    		sign = "+"
    		if s.Flag(' ') {
    			sign = " "
    		}
    		buf = buf[1:]
    	case s.Flag('+'):
    		sign = "+"
    	case s.Flag(' '):
    		sign = " "
    	}
    
    	var padding int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/signing/configurations/kotlin/build.gradle.kts

    extra["signing.keyId"] = "24875D73"
    extra["signing.password"] = "gradle"
    extra["signing.secretKeyRingFile"] = file("secKeyRingFile.gpg").absolutePath
    
    // tag::sign-runtime-elements[]
    signing {
        sign(configurations.runtimeElements.get())
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 479 bytes
    - Viewed (0)
  9. platforms/software/security/src/main/java/org/gradle/plugins/signing/type/AbstractSignatureType.java

        @Override
        public File sign(Signatory signatory, File toSign) {
            File signatureFile = fileFor(toSign);
            try (InputStream toSignStream = new BufferedInputStream(new FileInputStream(toSign));
                 OutputStream signatureFileStream = new BufferedOutputStream(new FileOutputStream(signatureFile))) {
                sign(signatory, toSignStream, signatureFileStream);
            } catch (IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. src/math/remainder.go

    	)
    	// special cases
    	switch {
    	case IsNaN(x) || IsNaN(y) || IsInf(x, 0) || y == 0:
    		return NaN()
    	case IsInf(y, 0):
    		return x
    	}
    	sign := false
    	if x < 0 {
    		x = -x
    		sign = true
    	}
    	if y < 0 {
    		y = -y
    	}
    	if x == y {
    		if sign {
    			zero := 0.0
    			return -zero
    		}
    		return 0
    	}
    	if y <= HalfMax {
    		x = Mod(x, y+y) // now x < 2y
    	}
    	if y < Tiny {
    		if x+x > y {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 2K bytes
    - Viewed (0)
Back to top