Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 84 for content_es (0.21 sec)

  1. src/crypto/tls/auth.go

    	"crypto/ecdsa"
    	"crypto/ed25519"
    	"crypto/elliptic"
    	"crypto/rsa"
    	"errors"
    	"fmt"
    	"hash"
    	"io"
    )
    
    // verifyHandshakeSignature verifies a signature against pre-hashed
    // (if required) handshake contents.
    func verifyHandshakeSignature(sigType uint8, pubkey crypto.PublicKey, hashFunc crypto.Hash, signed, sig []byte) error {
    	switch sigType {
    	case signatureECDSA:
    		pubKey, ok := pubkey.(*ecdsa.PublicKey)
    		if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/archive/tar/writer.go

    	}
    	if _, tw.err = tw.w.Write(zeroBlock[:tw.pad]); tw.err != nil {
    		return tw.err
    	}
    	tw.pad = 0
    	return nil
    }
    
    // WriteHeader writes hdr and prepares to accept the file's contents.
    // The Header.Size determines how many bytes can be written for the next file.
    // If the current file is not fully written, then this returns an error.
    // This implicitly flushes any padding necessary before writing the header.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  3. src/cmd/link/link_test.go

    		t.Errorf("linking with -strictdups=2 did not fail")
    	}
    	// NB: on amd64 we get the 'new length' error, on arm64 the 'different
    	// contents' error.
    	if !(bytes.Contains(out, []byte("mismatched payload: new length")) ||
    		bytes.Contains(out, []byte("mismatched payload: same length but different contents"))) ||
    		!bytes.Contains(out, []byte("mismatched payload: different sizes")) {
    		t.Errorf("unexpected output:\n%s", out)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  4. src/bufio/bufio.go

    	return b.buf[b.n:][:0]
    }
    
    // Buffered returns the number of bytes that have been written into the current buffer.
    func (b *Writer) Buffered() int { return b.n }
    
    // Write writes the contents of p into the buffer.
    // It returns the number of bytes written.
    // If nn < len(p), it also returns an error explaining
    // why the write is short.
    func (b *Writer) Write(p []byte) (nn int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  5. src/go/types/infer.go

    // function arguments args, if any. There must be at least one type parameter, no more type arguments
    // than type parameters, and params and args must match in number (incl. zero).
    // If reverse is set, an error message's contents are reversed for a better error message for some
    // errors related to reverse type inference (where the function call is synthetic).
    // If successful, infer returns the complete list of given and inferred type arguments, one for each
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  6. src/crypto/internal/bigmod/nat.go

    	if leading < m.leading {
    		return nil, errors.New("input overflows the modulus size")
    	}
    	x.maybeSubtractModulus(no, m)
    	return x, nil
    }
    
    // bigEndianUint returns the contents of buf interpreted as a
    // big-endian encoded uint value.
    func bigEndianUint(buf []byte) uint {
    	if _W == 64 {
    		return uint(byteorder.BeUint64(buf))
    	}
    	return uint(byteorder.BeUint32(buf))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  7. src/net/http/request_test.go

    		t.Errorf("filename = %q, want %q", fh.Filename, expectFilename)
    	}
    	var b strings.Builder
    	_, err = io.Copy(&b, f)
    	if err != nil {
    		t.Fatal("copying contents:", err)
    	}
    	if g := b.String(); g != expectContent {
    		t.Errorf("contents = %q, want %q", g, expectContent)
    	}
    	return f
    }
    
    // Issue 53181: verify Request.Cookie return the correct Cookie.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  8. src/cmd/trace/regions.go

      let params = new URLSearchParams(window.location.search);
      params.set(key, value);
      window.location.search = params.toString();
    }
    </script>
    
    <h1>Regions: {{.Name}}</h1>
    
    Table of contents
    <ul>
    	<li><a href="#summary">Summary</a></li>
    	<li><a href="#breakdown">Breakdown</a></li>
    	<li><a href="#ranges">Special ranges</a></li>
    </ul>
    
    <h3 id="summary">Summary</h3>
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. src/encoding/asn1/asn1.go

    func parseBool(bytes []byte) (ret bool, err error) {
    	if len(bytes) != 1 {
    		err = SyntaxError{"invalid boolean"}
    		return
    	}
    
    	// DER demands that "If the encoding represents the boolean value TRUE,
    	// its single contents octet shall have all eight bits set to one."
    	// Thus only 0 and 255 are valid encoded values.
    	switch bytes[0] {
    	case 0:
    		ret = false
    	case 0xff:
    		ret = true
    	default:
    		err = SyntaxError{"invalid boolean"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modcmd/vendor.go

    		embedPatterns = bp.EmbedPatterns
    	} else {
    		// Maintain the behavior of https://github.com/golang/go/issues/63473
    		// so that we continue to agree with older versions of the go command
    		// about the contents of vendor directories in existing modules
    		embedPatterns = str.StringList(bp.EmbedPatterns, bp.TestEmbedPatterns, bp.XTestEmbedPatterns)
    	}
    	embeds, err := load.ResolveEmbed(bp.Dir, embedPatterns)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
Back to top