Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 155 for p256 (0.04 sec)

  1. src/crypto/tls/testdata/Client-TLSv12-ClientCert-ECDSA-RSA

    000002c0  16 03 03 00 ac 0c 00 00  a8 03 00 1d 20 d9 02 16  |............ ...|
    000002d0  ba b6 db c0 c6 65 6d fb  b8 69 dc 04 1a 8d 4a 36  |.....em..i....J6|
    000002e0  27 6b f0 53 c3 72 56 1a  99 07 0f b9 79 08 04 00  |'k.S.rV.....y...|
    000002f0  80 5d c6 1e a2 20 7d ae  35 e6 20 2f ff 7a 7b 8d  |.]... }.5. /.z{.|
    00000300  3f fd 49 d4 ce 26 f7 d0  c2 51 2a 42 03 26 b7 30  |?.I..&...Q*B.&.0|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. src/cmd/internal/archive/archive.go

    // and then the part we want to parse begins.
    // The format of that part is defined in a comment at the top
    // of cmd/internal/goobj/objfile.go.
    func (r *objReader) parseObject(o *GoObj, size int64) error {
    	h := make([]byte, 0, 256)
    	var c1, c2, c3 byte
    	for {
    		c1, c2, c3 = c2, c3, r.readByte()
    		h = append(h, c3)
    		// The new export format can contain 0 bytes.
    		// Don't consider them errors, only look for r.err != nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go

    	SYS___Y0_B                          = 0x4E5 // 1253
    	SYS___J1_B                          = 0x4E6 // 1254
    	SYS___Y1_B                          = 0x4E7 // 1255
    	SYS___JN_B                          = 0x4E8 // 1256
    	SYS___YN_B                          = 0x4E9 // 1257
    	SYS___LGAMMA_B                      = 0x4EA // 1258
    	SYS_LGAMMA_R                        = 0x4EB // 1259
    	SYS___LOG_B                         = 0x4EC // 1260
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  4. src/math/erfc_s390x.s

    	BR	L9
    L36:
    	FMOVD	304(R9), F3
    	FSUB	F1, F3
    	VLEG	$0, 296(R9), V20
    	WFDDB	V1, V3, V6
    	FMOVD	288(R9), F5
    	FMOVD	280(R9), F1
    	FMOVD	272(R9), F2
    	VLEG	$0, 264(R9), V18
    	VLEG	$0, 256(R9), V16
    	FMOVD	248(R9), F3
    	FMOVD	240(R9), F4
    	WFMDB	V6, V6, V7
    	FMUL	F0, F0
    	MOVH	$0x0, R3
    	FMADD	F5, F7, F1
    	WFMADB	V7, V2, V20, V2
    	WFMADB	V7, V1, V18, V1
    	WFMADB	V7, V2, V16, V2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 15:34:41 UTC 2019
    - 14.4K bytes
    - Viewed (0)
  5. src/encoding/csv/reader.go

    	// The fields can be accessed by using the indexes in fieldIndexes.
    	// E.g., For the row `a,"b","c""d",e`, recordBuffer will contain `abc"de`
    	// and fieldIndexes will contain the indexes [1, 2, 5, 6].
    	recordBuffer []byte
    
    	// fieldIndexes is an index of fields inside recordBuffer.
    	// The i'th field ends at offset fieldIndexes[i] in recordBuffer.
    	fieldIndexes []int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:32:28 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Reader.kt

         *
         * @param streamId stream which has a priority change.
         * @param streamDependency the stream ID this stream is dependent on.
         * @param weight relative proportion of priority in `[1..256]`.
         * @param exclusive inserts this stream ID as the sole child of `streamDependency`.
         */
        fun priority(
          streamId: Int,
          streamDependency: Int,
          weight: Int,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. src/image/gif/writer_test.go

    	bo := rgba.Bounds()
    	rnd := rand.New(rand.NewSource(123))
    	for y := bo.Min.Y; y < bo.Max.Y; y++ {
    		for x := bo.Min.X; x < bo.Max.X; x++ {
    			rgba.SetRGBA(x, y, color.RGBA{
    				uint8(rnd.Intn(256)),
    				uint8(rnd.Intn(256)),
    				uint8(rnd.Intn(256)),
    				255,
    			})
    		}
    	}
    
    	b.SetBytes(640 * 480 * 4)
    	b.ReportAllocs()
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		Encode(io.Discard, rgba, nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware.go

    // the bytes read from the reader, and any error encountered
    func getResponse(r io.Reader) (*http.Response, []byte, error) {
    	rawResponse := bytes.NewBuffer(make([]byte, 0, 256))
    	// Save the bytes read while reading the response headers into the rawResponse buffer
    	resp, err := http.ReadResponse(bufio.NewReader(io.TeeReader(r, rawResponse)), nil)
    	if err != nil {
    		return nil, nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Server-TLSv13-ClientAuthRequestedAndECDSAGiven

    000001d0  0f 73 09 c8 cf 97 28 78  04 5b 04 51 44 c4 5f d1  |.s....(x.[.QD._.|
    000001e0  dc da 4f f5 d9 5c 9c b1  ea f8 1b f7 43 90 c0 c0  |..O..\......C...|
    000001f0  fd 82 56 e3 71 15 18 5e  7e 5c 61 5e b3 80 c1 1c  |..V.q..^~\a^....|
    00000200  22 92 32 67 23 f6 3b 74  e4 20 4e 1f fb f8 89 55  |".2g#.;t. N....U|
    00000210  e7 3c 18 30 24 77 7c 33  5c 89 91 60 65 14 06 9e  |.<.0$w|3\..`e...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  10. cmd/metacache-stream.go

    		return nil
    	}
    	if r.current.name != "" {
    		if r.current.name >= s {
    			return nil
    		}
    		r.current.name = ""
    		r.current.metadata = nil
    	}
    	// temporary name buffer.
    	tmp := make([]byte, 0, 256)
    	for {
    		if more, err := r.mr.ReadBool(); !more {
    			switch err {
    			case nil:
    				r.err = io.EOF
    				return io.EOF
    			case io.EOF:
    				r.err = io.ErrUnexpectedEOF
    				return io.ErrUnexpectedEOF
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top