Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for Strip (0.04 sec)

  1. src/net/url/url_test.go

    		&URL{
    			Scheme: "http",
    			Host:   "[fe80::1%en01-._~]:8080",
    			Path:   "/",
    		},
    		"http://[fe80::1%25en01-._~]:8080/",
    	},
    	// alternate escapings of path survive round trip
    	{
    		"http://rest.rsc.io/foo%2fbar/baz%2Fquux?alt=media",
    		&URL{
    			Scheme:   "http",
    			Host:     "rest.rsc.io",
    			Path:     "/foo/bar/baz/quux",
    			RawPath:  "/foo%2fbar/baz%2Fquux",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. src/encoding/json/decode_test.go

    				wantJSON, _ := Marshal(tt.out)
    				t.Fatalf("%s: Decode:\n\tgot:  %#+v\n\twant: %#+v\n\n\tgotJSON:  %s\n\twantJSON: %s", tt.Where, got, tt.out, gotJSON, wantJSON)
    			}
    
    			// Check round trip also decodes correctly.
    			if tt.err == nil {
    				enc, err := Marshal(v.Interface())
    				if err != nil {
    					t.Fatalf("%s: Marshal error after roundtrip: %v", tt.Where, err)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  3. src/text/template/exec_test.go

    	// Before index worked on reflect.Values, interface values
    	// were always implicitly promoted to the underlying value,
    	// except that nil interfaces were promoted to the zero reflect.Value.
    	// Eliminating a round trip to interface{} and back to reflect.Value
    	// eliminated this promotion, breaking these cases.
    	tests := []struct {
    		text string
    		out  string
    	}{
    		{`{{index .Nil 1}}`, "ERROR: index of untyped nil"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  4. src/testing/testing.go

    //	    out, err := hex.DecodeString(enc)
    //	    if err != nil {
    //	      t.Fatalf("%v: decode: %v", in, err)
    //	    }
    //	    if !bytes.Equal(in, out) {
    //	      t.Fatalf("%v: not equal after round trip: %v", in, out)
    //	    }
    //	  })
    //	}
    //
    // A fuzz test maintains a seed corpus, or a set of inputs which are run by
    // default, and can seed input generation. Seed inputs may be registered by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. src/net/http/transport.go

    // testing.
    var errRequestCanceled = http2errRequestCanceled
    var errRequestCanceledConn = errors.New("net/http: request canceled while waiting for connection") // TODO: unify?
    
    // errRequestDone is used to cancel the round trip Context after a request is successfully done.
    // It should not be seen by the user.
    var errRequestDone = errors.New("net/http: request completed")
    
    func nop() {}
    
    // testHooks. Always non-nil.
    var (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top