Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 79 for sigs (0.06 sec)

  1. docs/changelogs/changelog_3x.md

    _2018-07-12_
    
     *  **OkHttp's new okhttp-tls submodule tames HTTPS and TLS.**
    
        `HeldCertificate` is a TLS certificate and its private key. Generate a certificate with its
        builder then use it to sign another certificate or perform a TLS handshake. The
        `certificatePem()` method encodes the certificate in the familiar PEM format
        (`--- BEGIN CERTIFICATE ---`); the `privateKeyPkcs8Pem()` does likewise for the private key.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (SETEQstore [off] {sym} ptr (InvertFlags x) mem) => (SETEQstore [off] {sym} ptr x mem)
    (SETNEstore [off] {sym} ptr (InvertFlags x) mem) => (SETNEstore [off] {sym} ptr x mem)
    
    // sign extended loads
    // Note: The combined instruction must end up in the same block
    // as the original load. If not, we end up making a value with
    // memory type live in two different blocks, which can lead to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  3. configure.py

        # maximum performance should compile TF in their environment and can pass
        # `-march=native` there.
        # See https://github.com/tensorflow/tensorflow/issues/45744 and duplicates
        default_cc_opt_flags = '-Wno-sign-compare'
      question = ('Please specify optimization flags to use during compilation when'
                  ' bazel option "--config=opt" is specified [Default is %s]: '
                 ) % default_cc_opt_flags
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  4. src/main/java/jcifs/smb/SmbTransportImpl.java

                throw new SmbException("Not an SMB1 request");
            }
    
            this.negotiated.setupRequest(request);
    
            if ( response != null ) {
                request.setResponse(response); /* needed by sign */
                response.setDigest(request.getDigest());
            }
    
            try {
                if ( log.isTraceEnabled() ) {
                    log.trace("Sending " + request);
                }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed Jan 18 23:47:00 UTC 2023
    - 67K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * names to avoid confusing characters. This includes basic case folding: transforming shouting
     * `SQUARE.COM` into cool and casual `square.com`. It also handles more exotic characters. For
     * example, the Unicode trademark sign (™) could be confused for the letters "TM" in
     * `http://ho™ail.com`. To mitigate this, the single character (™) maps to the string (tm). There
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/riscv/obj.go

    	// placeholder for to_done's jump target
    	p = obj.Appendp(p, newprog)
    	p.As = obj.ANOP // zero-width place holder
    	to_done.To.SetTarget(p)
    
    	return p
    }
    
    // signExtend sign extends val starting at bit bit.
    func signExtend(val int64, bit uint) int64 {
    	return val << (64 - bit) >> (64 - bit)
    }
    
    // Split32BitImmediate splits a signed 32-bit immediate into a signed 20-bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  7. src/fmt/fmt_test.go

    					}
    					if space {
    						realFmt += " "
    					}
    					if plus {
    						realFmt += "+"
    					}
    					realFmt += "10.2"
    					realFmt += string(char)
    					// Imaginary part always has a sign, so force + and ignore space.
    					imagFmt := "%"
    					if zero {
    						imagFmt += "0"
    					}
    					imagFmt += "+"
    					imagFmt += "10.2"
    					imagFmt += string(char)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  8. src/runtime/mgcmark.go

    	lock(&work.assistQueue.lock)
    	for !work.assistQueue.q.empty() && scanBytes > 0 {
    		gp := work.assistQueue.q.pop()
    		// Note that gp.gcAssistBytes is negative because gp
    		// is in debt. Think carefully about the signs below.
    		if scanBytes+gp.gcAssistBytes >= 0 {
    			// Satisfy this entire assist debt.
    			scanBytes += gp.gcAssistBytes
    			gp.gcAssistBytes = 0
    			// It's important that we *not* put gp in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. src/time/time.go

    			return w
    		case u < uint64(Microsecond):
    			// print nanoseconds
    			prec = 0
    			buf[w] = 'n'
    		case u < uint64(Millisecond):
    			// print microseconds
    			prec = 3
    			// U+00B5 'µ' micro sign == 0xC2 0xB5
    			w-- // Need room for two bytes.
    			copy(buf[w:], "µ")
    		default:
    			// print milliseconds
    			prec = 6
    			buf[w] = 'm'
    		}
    		w, u = fmtFrac(buf[:w], u, prec)
    		w = fmtInt(buf[:w], u)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	}
    	// We don't currently print out the discriminator, so we don't
    	// save it.
    	return a
    }
    
    // closureTypeName parses:
    //
    //	<closure-type-name> ::= Ul <lambda-sig> E [ <nonnegative number> ] _
    //	<lambda-sig> ::= <parameter type>+
    func (st *state) closureTypeName() AST {
    	st.checkChar('U')
    	st.checkChar('l')
    
    	oldLambdaTemplateLevel := st.lambdaTemplateLevel
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top