Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for rp (0.04 sec)

  1. pilot/cmd/pilot-agent/status/server_test.go

    				default:
    				}
    			}
    		})
    	}
    }
    
    func TestAdditionalProbes(t *testing.T) {
    	rp := readyProbe{}
    	urp := unreadyProbe{}
    	testCases := []struct {
    		name   string
    		probes []ready.Prober
    		err    error
    	}{
    		{
    			name:   "success probe",
    			probes: []ready.Prober{rp},
    			err:    nil,
    		},
    		{
    			name:   "not ready probe",
    			probes: []ready.Prober{urp},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/route.go

    		action.Redirect.SchemeRewriteSpecifier = &route.RedirectAction_SchemeRedirect{SchemeRedirect: redirect.Scheme}
    	}
    
    	if redirect.RedirectPort != nil {
    		switch rp := redirect.RedirectPort.(type) {
    		case *networking.HTTPRedirect_DerivePort:
    			if rp.DerivePort == networking.HTTPRedirect_FROM_REQUEST_PORT {
    				// Envoy doesn't actually support deriving the port from the request dynamically. However,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    @${i.name} parameter ${JSON.stringify(e)}`);if(t==="basic"&&r){let a=new Pp({selector:r,nodes:i.nodes});i.removeAll(),i.append(a)}i[Mp]=n,i[Ra]=n?!n("all"):t==="noop"}var Ma=Symbol("hasRootRule");Ba.exports=(i={})=>{let e=Rp(["media","supports","layer","container"],i.bubble),t=xS(e),r=Rp(["document","font-face","keyframes","-webkit-keyframes","-moz-keyframes"],i.unwrap),n=(i.rootRuleName||"at-root").replace(/^@/,""),a=i.preserveEmpty;return{postcssPlugin:"postcss-nested",Once(s){s.walkAtRules(n,o=>{A...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
Back to top