Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for rp (0.07 sec)

  1. src/net/http/clientserver_test.go

    		}
    	}))
    
    	backURL, err := url.Parse(backend.ts.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    	rp := httputil.NewSingleHostReverseProxy(backURL)
    	rp.Transport = backend.tr
    	proxy := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {
    		rp.ServeHTTP(w, r)
    	}))
    
    	bodyRes := make(chan any, 1) // error or hash.Hash
    	pr, pw := io.Pipe()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  2. src/crypto/tls/testdata/Server-TLSv13-ClientAuthRequestedAndEd25519Given

    000000e0  f0 48 cd 85 61 a3 d2 d1  eb ba 04 39 6b 5e 5f fc  |.H..a......9k^_.|
    000000f0  e3 90 c1 cb 3f 40 30 00  5c 94 df bf 5b 89 6d ab  |....?@0.\...[.m.|
    00000100  15 1e 72 50 ac 56 ee 16  7d 84 4c e6 0c 89 68 fa  |..rP.V..}.L...h.|
    00000110  d5 8d 5f 09 85 25 5f 8c  70 df 0b b7 94 15 40 20  |.._..%_.p.....@ |
    00000120  b1 ff 41 50 5d 9f c6 8a  9b 7f 40 6f dc bd 4f 54  |..AP]******@****.***|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. src/regexp/syntax/parse.go

    	return t, nil
    }
    
    // cleanClass sorts the ranges (pairs of elements of r),
    // merges them, and eliminates duplicates.
    func cleanClass(rp *[]rune) []rune {
    
    	// Sort by lo increasing, hi decreasing to break ties.
    	sort.Sort(ranges{rp})
    
    	r := *rp
    	if len(r) < 2 {
    		return r
    	}
    
    	// Merge abutting, overlapping.
    	w := 2 // write index
    	for i := 2; i < len(r); i += 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/regalloc.go

    					// which may reduce spill or copy operations when the register is available.
    					for _, a := range v.Args {
    						rp, ok = s.f.getHome(a.ID).(*Register)
    						if ok {
    							break
    						}
    					}
    					if !ok {
    						continue
    					}
    				}
    				desired.add(v.Args[pidx].ID, register(rp.num))
    			}
    		}
    		// Walk values backwards computing desired register info.
    		// See computeLive for more comments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/rust.go

    			switch c := id[0]; c {
    			case '$':
    				codes := map[string]byte{
    					"SP": '@',
    					"BP": '*',
    					"RF": '&',
    					"LT": '<',
    					"GT": '>',
    					"LP": '(',
    					"RP": ')',
    				}
    
    				valid := true
    				if len(id) > 2 && id[1] == 'C' && id[2] == '$' {
    					sb.WriteByte(',')
    					id = id[3:]
    				} else if len(id) > 4 && id[1] == 'u' && id[4] == '$' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  6. pkg/apis/apps/validation/validation_test.go

    			ss.Spec.Selector = nil
    		} else {
    			ss.Spec.Selector = &metav1.LabelSelector{MatchLabels: labels}
    		}
    	}
    }
    
    func tweakTemplateRestartPolicy(rp api.RestartPolicy) statefulSetTweak {
    	return func(ss *apps.StatefulSet) {
    		ss.Spec.Template.Spec.RestartPolicy = rp
    	}
    }
    
    func tweakMinReadySeconds(t int32) statefulSetTweak {
    	return func(ss *apps.StatefulSet) {
    		ss.Spec.MinReadySeconds = t
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  7. src/net/http/server.go

    		p := strings.TrimPrefix(r.URL.Path, prefix)
    		rp := strings.TrimPrefix(r.URL.RawPath, prefix)
    		if len(p) < len(r.URL.Path) && (r.URL.RawPath == "" || len(rp) < len(r.URL.RawPath)) {
    			r2 := new(Request)
    			*r2 = *r
    			r2.URL = new(url.URL)
    			*r2.URL = *r.URL
    			r2.URL.Path = p
    			r2.URL.RawPath = rp
    			h.ServeHTTP(w, r2)
    		} else {
    			NotFound(w, r)
    		}
    	})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. src/os/os_test.go

    		threads = 50
    	}
    
    	r := make([]*File, threads)
    	w := make([]*File, threads)
    	for i := 0; i < threads; i++ {
    		rp, wp, err := Pipe()
    		if err != nil {
    			for j := 0; j < i; j++ {
    				r[j].Close()
    				w[j].Close()
    			}
    			t.Fatal(err)
    		}
    		r[i] = rp
    		w[i] = wp
    	}
    
    	defer debug.SetMaxThreads(debug.SetMaxThreads(threads / 2))
    
    	creading := make(chan bool, threads)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    				gorootSrcCmd := filepath.Join(cfg.GOROOTsrc, "cmd")
    				if str.HasPathPrefix(r.dir, gorootSrcCmd) {
    					modroot = gorootSrcCmd
    				}
    			}
    			if modroot != "" {
    				if rp, err := modindex.GetPackage(modroot, r.dir); err == nil {
    					data.p, data.err = rp.Import(cfg.BuildContext, buildMode)
    					goto Happy
    				} else if !errors.Is(err, modindex.ErrNotIndexed) {
    					base.Fatal(err)
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. gradle/verification-keyring.keys

    bS5nZW50QGV2b2NhdHVzLmNvbT65Ag0EWSB/xQEQAM/knv0YAn90VzGohsA+IaKc
    r88kC0jDfQGEfOv8xLEXweMKbe/glFpaeVp16GODmbAQcJFcwWTGq1VcLUhdAUsX
    FGmVtgwnfrZrAT7YZgi0AJa2L2JGhXGH0+x7f940sAcDBsU20McE8i+auZRT7+rp
    c89NuiNG18uwpbq4py8XzaZmNEka2RSSY7y4wtYnMkOINi99e1exyWix0Wf6qAa0
    NTspUwUIopSu6NMFexcgpnTaEsKQj+1WzmIB0S4uOTwiDW7/fffheLIUQ5Ry10EZ
    WCOAuDQBQG7vk5+0biolMxp1Yt4tTxO+cXslBpPbJ1ULJnGYjkHzTGG2ZNZY+Lux
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 525.2K bytes
    - Viewed (0)
Back to top