Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 49 for rp (0.04 sec)

  1. src/crypto/tls/testdata/Server-TLSv13-ClientAuthRequestedAndGiven

    00000050  58 7d fe c1 e3 78 79 31  48 d2 74 c0 8d 17 97 6f  |X}...xy1H.t....o|
    00000060  30 bb 8a 2c 8c d4 76 3d  3f f0 20 24 3d 5a 21 0c  |0..,..v=?. $=Z!.|
    00000070  37 7b 14 45 e6 69 db ed  52 50 a0 77 e9 a2 84 59  |7{.E.i..RP.w...Y|
    00000080  0c 96 c1 ad 48 ed 8d 9f  00 4d f2 15 86 71 c0 fa  |....H....M...q..|
    00000090  14 b9 77 cb 9f 04 d9 1b  be da 68 8e 31 8f 25 14  |..w.......h.1.%.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/jit/tests/opens2s_gnmt_mixed_precision.pbtxt.gz

    ��jg���#��I�ŷ�Ü#��m�K���גGێ�9�Il;'Z伣]$q��0hq�ˇ~[l;�Y��_�ێu9�H�`���'Y�����t�鴛Y�fv��]�%6y��XZ�s�+|�=���Ϸ��O���W���Ws��;�o�_\����W�w��x��|�;�AL�� ��K~L;�I�n��pe���S�g�{�r �-�e����5���s�V=�{X��D��W�gI�_2o (B��9�S�ϧ1�4�rP�caIRQ������{ǵ�rҶ�9��yV؆/���m�������Bke0�����H{?[U�k�h��r�����[�����d�6����7�w��g>��G� /%Vɍf�xc?�5�a�h�s/����'K/�V��]�l�����������[ed�2R��7?J���U�s*�Jn�%w�D|4����W]R���ΓQ��(K�ndᨗ�u����lW�����\�4�K�zdT{~�b��F�ek��g��qߋ��Uۊ�|���I���...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 18:14:27 UTC 2019
    - 195.5K bytes
    - Viewed (0)
  10. 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)
Back to top