Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 150 for 7230 (0.04 sec)

  1. src/net/http/readrequest_test.go

    			Host:          "test",
    			RequestURI:    "//user@host/is/actually/a/path/",
    		},
    
    		noBodyStr,
    		noTrailer,
    		noError,
    	},
    
    	// Tests a bogus absolute-path on the Request-Line (RFC 7230 section 5.3.1)
    	{
    		"GET ../../../../etc/passwd HTTP/1.1\r\n" +
    			"Host: test\r\n\r\n",
    		nil,
    		noBodyStr,
    		noTrailer,
    		`parse "../../../../etc/passwd": invalid URI for request`,
    	},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 22:23:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/net/http/response_test.go

    				"Content-Length": {"0"},
    			},
    			Close:         false,
    			ContentLength: 0,
    		},
    
    		"",
    	},
    
    	// Status line without a Reason-Phrase, but trailing space.
    	// (permitted by RFC 7230, section 3.1.2)
    	{
    		"HTTP/1.0 303 \r\n\r\n",
    		Response{
    			Status:        "303 ",
    			StatusCode:    303,
    			Proto:         "HTTP/1.0",
    			ProtoMajor:    1,
    			ProtoMinor:    0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 19:01:29 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  3. src/net/http/response.go

    	ProtoMajor int    // e.g. 1
    	ProtoMinor int    // e.g. 0
    
    	// Header maps header keys to values. If the response had multiple
    	// headers with the same key, they may be concatenated, with comma
    	// delimiters.  (RFC 7230, section 3.2.2 requires that multiple headers
    	// be semantically equivalent to a comma-delimited sequence.) When
    	// Header values are duplicated by other fields in this struct (e.g.,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                                            description: HTTPHeader represents an HTTP
                                              Header name and value as defined by RFC
                                              7230.
                                            properties:
                                              name:
                                                description: "Name is the name of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  5. src/net/textproto/reader_test.go

    	wantCode int
    	wantMsg  string
    }
    
    var readResponseTests = []readResponseTest{
    	{"230-Anonymous access granted, restrictions apply\n" +
    		"Read the file README.txt,\n" +
    		"230  please",
    		23,
    		230,
    		"Anonymous access granted, restrictions apply\nRead the file README.txt,\n please",
    	},
    
    	{"230 Anonymous access granted, restrictions apply\n",
    		23,
    		230,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  6. tests/integration/pilot/testdata/gateway-api-crd.yaml

                                            description: HTTPHeader represents an HTTP
                                              Header name and value as defined by RFC
                                              7230.
                                            properties:
                                              name:
                                                description: |-
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  7. src/crypto/tls/testdata/Server-TLSv13-ClientAuthRequestedAndEd25519Given

    00000080  98 0a 6d 5b fd c6 0c ad  02 7f 0c f8 b4 be fe 5a  |..m[...........Z|
    00000090  fb 22 00 08 09 5d c7 47  76 89 e5 06 d1 90 5b e6  |."...].Gv.....[.|
    000000a0  63 64 06 28 37 d9 1b e9  0d 27 45 f7 72 30 d7 f2  |cd.(7....'E.r0..|
    000000b0  db 8e bf 95 97 29 43 e7  16 bf a0 59 9c fa d9 59  |.....)C....Y...Y|
    000000c0  a0 a6 9b 1f b5 74 80 87  d0 61 2f d5 a5 ac dd b2  |.....t...a/.....|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  8. src/net/http/server.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // HTTP server. See RFC 7230 through 7235.
    
    package http
    
    import (
    	"bufio"
    	"bytes"
    	"context"
    	"crypto/tls"
    	"errors"
    	"fmt"
    	"internal/godebug"
    	"io"
    	"log"
    	"math/rand"
    	"net"
    	"net/textproto"
    	"net/url"
    	urlpkg "net/url"
    	"path"
    	"runtime"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. src/net/mail/message.go

    	}, nil
    }
    
    // readHeader reads the message headers from r.
    // This is like textproto.ReadMIMEHeader, but doesn't validate.
    // The fix for issue #53188 tightened up net/textproto to enforce
    // restrictions of RFC 7230.
    // This package implements RFC 5322, which does not have those restrictions.
    // This function copies the relevant code from net/textproto,
    // simplified for RFC 5322.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. src/net/http/client.go

    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // HTTP client. See RFC 7230 through 7235.
    //
    // This is the high-level Client interface.
    // The low-level implementation is in transport.go.
    
    package http
    
    import (
    	"context"
    	"crypto/tls"
    	"encoding/base64"
    	"errors"
    	"fmt"
    	"io"
    	"log"
    	"net/http/internal/ascii"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
Back to top