Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 99 for rr (0.02 sec)

  1. src/crypto/tls/testdata/Server-TLSv10-RSA-AES

    00000020  ca 61 eb 04 54 6d 49 97  02 67 fe 28 79 be 4d 37  |.a..TmI..g.(y.M7|
    00000030  f7 ba e8 e0 2b 90 31 fe  66 d8 04 ad bf fb 2c 05  |....+.1.f.....,.|
    00000040  7e 41 a0 5d 00 47 20 84  83 2c 39 7f 29 aa 72 72  |~A.].G ..,9.).rr|
    00000050  89 e3 c7 bb ea 07 d2 29  94 de 54 23 eb 9f ae fa  |.......)..T#....|
    00000060  3b 9a 23 bd a8 43 11 ab  b5 6c 8a ae c6 71 2c c4  |;.#..C...l...q,.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

    			}
    			if !ldr.AttrReachable(rr.Xsym) {
    				ldr.Errorf(s, "unreachable reloc %d (%s) target %v", r.Type(), sym.RelocName(ctxt.Arch, r.Type()), ldr.SymName(rr.Xsym))
    			}
    			if !thearch.ELF.Reloc1(ctxt, out, ldr, s, rr, ri, int64(uint64(ldr.SymValue(s)+int64(r.Off()))-sect.Vaddr)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/pe.go

    				r := relocs.At(ri)
    				rr, ok := extreloc(ctxt, ldr, s, r)
    				if !ok {
    					continue
    				}
    				if rr.Xsym == 0 {
    					ctxt.Errorf(s, "missing xsym in relocation")
    					continue
    				}
    				if ldr.SymDynid(rr.Xsym) < 0 {
    					ctxt.Errorf(s, "reloc %d to non-coff symbol %s (outer=%s) %d", r.Type(), ldr.SymName(r.Sym()), ldr.SymName(rr.Xsym), ldr.SymType(r.Sym()))
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  4. src/image/gif/reader.go

    }
    
    // decode reads a GIF image from r and stores the result in d.
    func (d *decoder) decode(r io.Reader, configOnly, keepAllFrames bool) error {
    	// Add buffering if r does not provide ReadByte.
    	if rr, ok := r.(reader); ok {
    		d.r = rr
    	} else {
    		d.r = bufio.NewReader(r)
    	}
    
    	d.loopCount = -1
    
    	err := d.readHeaderAndScreenDescriptor()
    	if err != nil {
    		return err
    	}
    	if configOnly {
    		return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/staticinit/sched.go

    			}
    			// Requires computation, but we're
    			// copying someone else's computation.
    			ll := ir.NewNameOffsetExpr(base.Pos, l, loff+e.Xoffset, typ)
    			rr := ir.NewNameOffsetExpr(base.Pos, orig, e.Xoffset, typ)
    			ir.SetPos(rr)
    			s.append(ir.NewAssignStmt(base.Pos, ll, rr))
    		}
    
    		return true
    	}
    
    	return false
    }
    
    func (s *Schedule) StaticAssign(l *ir.Name, loff int64, r ir.Node, typ *types.Type) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  6. src/compress/flate/inflate.go

    			}
    			f.b = b >> (n & 31)
    			f.nb = nb - n
    			return int(chunk >> huffmanValueShift), nil
    		}
    	}
    }
    
    func (f *decompressor) makeReader(r io.Reader) {
    	if rr, ok := r.(Reader); ok {
    		f.rBuf = nil
    		f.r = rr
    		return
    	}
    	// Reuse rBuf if possible. Invariant: rBuf is always created (and owned) by decompressor.
    	if f.rBuf != nil {
    		f.rBuf.Reset(r)
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  7. src/net/http/fs_test.go

    	}
    	for _, tt := range tests {
    		var log []string
    		rr := httptest.NewRecorder()
    		req, _ := NewRequest("GET", "http://foo.localhost"+tt.path, nil)
    		FileServer(fileServerCleanPathDir{&log}).ServeHTTP(rr, req)
    		if !reflect.DeepEqual(log, tt.wantOpen) {
    			t.Logf("For %s: Opens = %q; want %q", tt.path, log, tt.wantOpen)
    		}
    		if rr.Code != tt.wantCode {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  8. pilot/pkg/xds/eds_test.go

    	req, err := http.NewRequest(http.MethodGet, "/debug/edsz?proxyID="+proxyID, nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    	rr := httptest.NewRecorder()
    	debug := http.HandlerFunc(s.Discovery.Edsz)
    	debug.ServeHTTP(rr, req)
    
    	data, err := io.ReadAll(rr.Body)
    	if err != nil {
    		t.Fatalf("Failed to read /edsz")
    	}
    	statusStr := string(data)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 20:58:47 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv12-RenegotiateOnce

    00000150  c7 1d 71 b6 e2 d7 b1 23  b1 96 a6 bd 74 eb ad 69  |..q....#....t..i|
    00000160  59 0c 0f af 8a 64 be e4  a7 27 c2 95 11 05 55 a1  |Y....d...'....U.|
    00000170  d6 44 df ad 1d 9c 3a 88  24 52 52 9d 42 f2 74 98  |.D....:.$RR.B.t.|
    00000180  08 9f 55 1b 2f 79 ca b4  63 38 e4 f2 fa 99 ce 66  |..U./y..c8.....f|
    00000190  77 ac 8d 31 91 05 1c bc  51 0a 31 df 5d 3e f8 69  |w..1....Q.1.]>.i|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. src/cmd/cgo/out.go

    		return &Type{Size: p.PtrSize, Align: p.PtrSize, C: c("GoChan")}
    	case *ast.Ident:
    		goTypesFixup := func(r *Type) *Type {
    			if r.Size == 0 { // int or uint
    				rr := new(Type)
    				*rr = *r
    				rr.Size = p.IntSize
    				rr.Align = p.IntSize
    				r = rr
    			}
    			if r.Align > p.PtrSize {
    				r.Align = p.PtrSize
    			}
    			return r
    		}
    		// Look up the type in the top level declarations.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top