Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 90 for rr (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/net/http/serve_test.go

    			}
    			h, _ := mux.Handler(r)
    			rr := httptest.NewRecorder()
    			h.ServeHTTP(rr, r)
    			if rr.Code != 301 {
    				if rr.Code != tt.code {
    					t.Errorf("%s %s %s = %d, want %d", tt.method, tt.host, tt.url, rr.Code, tt.code)
    				}
    				break
    			}
    			if !tt.redirOk {
    				t.Errorf("%s %s %s, unexpected redirect", tt.method, tt.host, tt.url)
    				break
    			}
    			turl = rr.HeaderMap.Get("Location")
    			tries--
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. src/compress/bzip2/bzip2.go

    	bz2.lastByte = -1
    	bz2.byteRepeats = 0
    	bz2.repeats = 0
    
    	return nil
    }
    
    // inverseBWT implements the inverse Burrows-Wheeler transform as described in
    // http://www.hpl.hp.com/techreports/Compaq-DEC/SRC-RR-124.pdf, section 4.2.
    // In that document, origPtr is called ā€œIā€ and c is the ā€œCā€ array after the
    // first pass over the data. It's an argument here because we merge the first
    // pass with the Huffman decoding.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. src/crypto/tls/testdata/Client-TLSv13-ClientCert-RSA-ECDSA

    00000160  dc 74 27 e9 af b1 64 56  19 28 8a 34 93 4e 1c 03  |.t'...dV.(.4.N..|
    00000170  67 ae 41 fb 5f d1 e3 20  45 6b bd 49 25 d8 b4 8b  |g.A._.. Ek.I%...|
    00000180  d4 96 d6 96 b2 72 72 f0  d0 68 f1 f7 f3 17 76 85  |.....rr..h....v.|
    00000190  78 0e dd 35 83 8a 7a 45  c5 91 86 4b a6 b5 77 b4  |x..5..zE...K..w.|
    000001a0  ef 02 43 5c 42 c7 f8 a6  1d ed 73 d2 41 02 be cb  |..C\B.....s.A...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. pilot/pkg/model/context.go

    type DeletedResources = []string
    
    func AnyToUnnamedResources(r []*anypb.Any) Resources {
    	a := make(Resources, 0, len(r))
    	for _, rr := range r {
    		a = append(a, &discovery.Resource{Resource: rr})
    	}
    	return a
    }
    
    // XdsUpdates include information about the subset of updated resources.
    // See for example EDS incremental updates.
    type XdsUpdates = sets.Set[ConfigKey]
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (1)
Back to top