Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 74 for msign (0.04 sec)

  1. 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)
  2. src/math/big/float.go

    		}
    	}
    
    	return 0
    }
    
    // Handling of sign bit as defined by IEEE 754-2008, section 6.3:
    //
    // When neither the inputs nor result are NaN, the sign of a product or
    // quotient is the exclusive OR of the operands’ signs; the sign of a sum,
    // or of a difference x−y regarded as a sum x+(−y), differs from at most
    // one of the addends’ signs; and the sign of the result of conversions,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity.go

    func (q *Quantity) IsZero() bool {
    	if q.d.Dec != nil {
    		return q.d.Dec.Sign() == 0
    	}
    	return q.i.value == 0
    }
    
    // Sign returns 0 if the quantity is zero, -1 if the quantity is less than zero, or 1 if the
    // quantity is greater than zero.
    func (q *Quantity) Sign() int {
    	if q.d.Dec != nil {
    		return q.d.Dec.Sign()
    	}
    	return q.i.Sign()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/templates/productpage.html

                </div>
              </div>
            </a>
            {% else %}
              <button type="button" id="sign-in-button" class="rounded-md bg-blue-600 px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-blue-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-blue-600">
                Sign in
              </button>
            {% endif %}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. security/pkg/server/ca/server.go

    // CertificateAuthority contains methods to be supported by a CA.
    type CertificateAuthority interface {
    	// Sign generates a certificate for a workload or CA, from the given CSR and cert opts.
    	Sign(csrPEM []byte, opts ca.CertOpts) ([]byte, error)
    	// SignWithCertChain is similar to Sign but returns the leaf cert and the entire cert chain.
    	SignWithCertChain(csrPEM []byte, opts ca.CertOpts) ([]string, error)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 17:35:26 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. build-logic/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

    tasks.withType<Sign>().configureEach { isEnabled = signArtifacts }
    
    signing {
        useInMemoryPgpKeys(
            project.providers.environmentVariable("PGP_SIGNING_KEY").orNull,
            project.providers.environmentVariable("PGP_SIGNING_KEY_PASSPHRASE").orNull
        )
        publishing.publications.configureEach {
            if (signArtifacts) {
                signing.sign(this)
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/types.go

    }
    
    // update node info based on the pod and sign.
    // The sign will be set to `+1` when AddPod and to `-1` when RemovePod.
    func (n *NodeInfo) update(pod *v1.Pod, sign int64) {
    	res, non0CPU, non0Mem := calculateResource(pod)
    	n.Requested.MilliCPU += sign * res.MilliCPU
    	n.Requested.Memory += sign * res.Memory
    	n.Requested.EphemeralStorage += sign * res.EphemeralStorage
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  8. src/time/format.go

    	// Format monotonic clock reading as m=±ddd.nnnnnnnnn.
    	if t.wall&hasMonotonic != 0 {
    		m2 := uint64(t.ext)
    		sign := byte('+')
    		if t.ext < 0 {
    			sign = '-'
    			m2 = -m2
    		}
    		m1, m2 := m2/1e9, m2%1e9
    		m0, m1 := m1/1e9, m1%1e9
    		buf := make([]byte, 0, 24)
    		buf = append(buf, " m="...)
    		buf = append(buf, sign)
    		wid := 0
    		if m0 != 0 {
    			buf = appendInt(buf, int(m0), 0)
    			wid = 9
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  9. src/crypto/tls/bogo_config.json

            "Client-Sign-RSA_PKCS1_SHA1-TLS13": "TODO: first pass, this should be fixed",
            "Client-Sign-RSA_PKCS1_SHA256-TLS13": "TODO: first pass, this should be fixed",
            "Client-Sign-RSA_PKCS1_SHA384-TLS13": "TODO: first pass, this should be fixed",
            "Client-Sign-RSA_PKCS1_SHA512-TLS13": "TODO: first pass, this should be fixed",
            "Client-Sign-ECDSA_SHA1-TLS13": "TODO: first pass, this should be fixed",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 15:52:42 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.plugins.signing.Sign.getSignatures()> does not have raw return type assignable to org.gradle.api.provider.Provider in (Sign.java:0)
    Method <org.gradle.plugins.signing.Sign.getSignaturesByKey()> does not have raw return type assignable to org.gradle.api.provider.Provider in (Sign.java:0)
    Method <org.gradle.plugins.signing.Sign.getSingleSignature()> does not have raw return type assignable to org.gradle.api.provider.Provider in (Sign.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top