Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for Vt (0.04 sec)

  1. src/net/http/serve_test.go

    		case StatusOK:
    			s := r.Header.Get("Result")
    			if s != vt.expected {
    				t.Errorf("Get(%q) = %q, want %q", vt.url, s, vt.expected)
    			}
    		case StatusMovedPermanently:
    			s := r.Header.Get("Location")
    			if s != vt.expected {
    				t.Errorf("Get(%q) = %q, want %q", vt.url, s, vt.expected)
    			}
    		default:
    			t.Errorf("Get(%q) unhandled status code %d", vt.url, r.StatusCode)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  2. src/crypto/tls/testdata/Server-TLSv13-ClientAuthRequestedAndECDSAGiven

    00000120  12 9e ee d3 eb ca 1c c0  3b e1 99 e3 c2 25 de 39  |........;....%.9|
    00000130  1a 15 e0 d7 20 9d 1b 95  74 8c ee 96 7b 5e de 13  |.... ...t...{^..|
    00000140  99 56 54 a2 31 7b e9 96  02 9e 86 7b 15 9d c6 3e  |.VT.1{.....{...>|
    00000150  24 a5 19 e5 8e de 85 97  05 68 4f 39 d1 49 05 c9  |$........hO9.I..|
    00000160  7a 54 90 29 e7 93 ec 8e  6f cc 73 73 82 7d 72 8d  |zT.)....o.ss.}r.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Ascii.java

       * position to the next in a series of predetermined printing lines. (Applicable also to display
       * devices.)
       *
       * @since 8.0
       */
      public static final byte VT = 11;
    
      /**
       * Form Feed ('\f'): A format effector which controls the movement of the printing position to the
       * first pre-determined printing line on the next form or page. (Applicable also to display
       * devices.)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  4. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    vm.bytemark.co.uk vn vn.ua voagat.no vodka volda.no volkenkunde.museum volkswagen vologda.su volvo volyn.ua voorloper.cloud voss.no vossevangen.no vote voting voto voyage vp4.me vpndns.net vpnplus.to vps-host.net vps.mcdir.ru vr.it vs.it vs.mythic-beasts.com vt.it vt.us vu vuelos vv.it vxl.sh várggát.no vågan.no vågsøy.no vågå.no våler.hedmark.no våler.østfold.no værøy.no w.bg w.se wa.au wa.edu.au wa.gov.au wa.us wada.nagano.jp wafflecell.com wajiki.tokushima.jp wajima.ishikawa.jp wakasa.fukui.jp...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Ascii.java

       * position to the next in a series of predetermined printing lines. (Applicable also to display
       * devices.)
       *
       * @since 8.0
       */
      public static final byte VT = 11;
    
      /**
       * Form Feed ('\f'): A format effector which controls the movement of the printing position to the
       * first pre-determined printing line on the next form or page. (Applicable also to display
       * devices.)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  6. src/encoding/xml/marshal_test.go

    			`<b xmlns="space1">b1</b></x>`+
    			`</top>` {
    			// TODO(rogpeppe): re-enable this test in
    			// https://go-review.googlesource.com/#/c/5910/
    			continue
    		}
    
    		vt := reflect.TypeOf(test.Value)
    		dest := reflect.New(vt.Elem()).Interface()
    		err := Unmarshal([]byte(test.ExpectXML), dest)
    
    		t.Run(fmt.Sprintf("%d", i), func(t *testing.T) {
    			switch fix := dest.(type) {
    			case *Feed:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  7. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    default)(i.theme,c);if(Mo(f)){let d=Object.keys(f).filter(m=>Bo(i,[...c,m]).isValid),p=(0,Hh.default)(a[a.length-1],d);p?u+=` Did you mean '${Vt([...c,p])}'?`:d.length>0&&(u+=` '${Vt(c)}' has the following valid keys: ${Yh(d)}`)}else{let d=h2(i.theme,n);if(d){let p=(0,ri.default)(i.theme,d);Mo(p)?u+=` '${Vt(d)}' has the following keys: ${Qh(p)}`:u+=` '${Vt(d)}' is not an object.`}else u+=` Your theme has the following top-level keys: ${Qh(i.theme)}`}return{isValid:!1,error:u}}if(!(typeof s=="string"||typeof...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  8. src/reflect/value.go

    func (v Value) CanConvert(t Type) bool {
    	vt := v.Type()
    	if !vt.ConvertibleTo(t) {
    		return false
    	}
    	// Converting from slice to array or to pointer-to-array can panic
    	// depending on the value.
    	switch {
    	case vt.Kind() == Slice && t.Kind() == Array:
    		if t.Len() > v.Len() {
    			return false
    		}
    	case vt.Kind() == Slice && t.Kind() == Pointer && t.Elem().Kind() == Array:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	return newS
    }
    
    func mapSliceFromSlice(m []interface{}) []map[string]interface{} {
    	newM := []map[string]interface{}{}
    	for _, v := range m {
    		vt := v.(map[string]interface{})
    		newM = append(newM, vt)
    	}
    
    	return newM
    }
    
    func sliceFromMapSlice(s []map[string]interface{}) []interface{} {
    	newS := []interface{}{}
    	for _, v := range s {
    		newS = append(newS, v)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  10. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    varese.it
    vb.it
    vc.it
    ve.it
    venezia.it
    venice.it
    verbania.it
    vercelli.it
    verona.it
    vi.it
    vibo-valentia.it
    vibovalentia.it
    vicenza.it
    viterbo.it
    vr.it
    vs.it
    vt.it
    vv.it
    
    // je : http://www.channelisles.net/register-domains/
    // Confirmed by registry <******@****.***> 2013-11-28
    je
    co.je
    net.je
    org.je
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top