Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 871 for Dealer (0.11 sec)

  1. src/internal/zstd/zstd.go

    	checksum xxhash64
    }
    
    // NewReader creates a new Reader that decompresses data from the given reader.
    func NewReader(input io.Reader) *Reader {
    	r := new(Reader)
    	r.Reset(input)
    	return r
    }
    
    // Reset discards the current state and starts reading a new stream from r.
    // This permits reusing a Reader rather than allocating a new one.
    func (r *Reader) Reset(input io.Reader) {
    	r.r = input
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 04:10:45 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. fastapi/security/http.py

        The HTTP authorization header value is split by the first space.
    
        The first part is the `scheme`, the second part is the `credentials`.
    
        For example, in an HTTP Bearer token scheme, the client will send a header
        like:
    
        ```
        Authorization: Bearer deadbeef12346
        ```
    
        In this case:
    
        * `scheme` will have the value `"Bearer"`
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Apr 19 15:29:38 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    uwajima.ehime.jp uwu.ai uy uy.com uz uz.ua uzhgorod.ua uzs.gov.pl v-info.info v.bg v.ua va va.it va.no va.us vaapste.no vacations vadso.no vadsø.no vaga.no vagan.no vagsoy.no vaksdal.no val-d-aosta.it val-daosta.it vald-aosta.it valdaosta.it valer.hedmark.no valer.ostfold.no valle-aosta.it valle-d-aosta.it valle-daosta.it valle.no valleaosta.it valled-aosta.it valledaosta.it vallee-aoste.it vallee-d-aoste.it valleeaoste.it valleedaoste.it valley.museum vallée-aoste.it vallée-d-aoste.it valléeaoste.it...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware_test.go

    			var requestBody io.Reader
    			if test.requestBody != "" {
    				requestBody = bytes.NewBufferString(test.requestBody)
    			}
    			req, err := http.NewRequest(test.method, proxyURL.String(), requestBody)
    			if test.requestHeader != nil {
    				header := http.Header{}
    				for k, v := range test.requestHeader {
    					header.Add(k, v)
    				}
    				req.Header = header
    			}
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 39.4K bytes
    - Viewed (0)
  5. docs/de/docs/tutorial/handling-errors.md

    ## Benutzerdefinierte Header hinzufügen
    
    Es gibt Situationen, da ist es nützlich, dem HTTP-Error benutzerdefinierte Header hinzufügen zu können, etwa in einigen Sicherheitsszenarien.
    
    Sie müssen das wahrscheinlich nicht direkt in ihrem Code verwenden.
    
    Aber falls es in einem fortgeschrittenen Szenario notwendig ist, können Sie benutzerdefinierte Header wie folgt hinzufügen:
    
    ```Python hl_lines="14"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:28:29 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. internal/grid/connection.go

    		toDial += RoutePath
    
    		dialer := ws.DefaultDialer
    		dialer.ReadBufferSize = readBufferSize
    		dialer.WriteBufferSize = writeBufferSize
    		dialer.Timeout = defaultDialTimeout
    		if c.dialer != nil {
    			dialer.NetDial = c.dialer.DialContext
    		}
    		if c.header == nil {
    			c.header = make(http.Header, 2)
    		}
    		c.header.Set("Authorization", "Bearer "+c.auth(""))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/net/http.go

    	r := new(http.Request)
    
    	// shallow clone
    	*r = *req
    
    	// deep copy headers
    	r.Header = CloneHeader(req.Header)
    
    	return r
    }
    
    // CloneHeader creates a deep copy of an http.Header.
    func CloneHeader(in http.Header) http.Header {
    	out := make(http.Header, len(in))
    	for key, values := range in {
    		newValues := make([]string, len(values))
    		copy(newValues, values)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 05 00:08:58 UTC 2022
    - 20.8K bytes
    - Viewed (0)
  8. src/archive/tar/writer.go

    // The Header.Size determines how many bytes can be written for the next file.
    // If the current file is not fully written, then this returns an error.
    // This implicitly flushes any padding necessary before writing the header.
    func (tw *Writer) WriteHeader(hdr *Header) error {
    	if err := tw.Flush(); err != nil {
    		return err
    	}
    	tw.hdr = *hdr // Shallow copy of Header
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  9. fastapi/security/oauth2.py

                Doc(
                    """
                    By default, if no HTTP Authorization header is provided, required for
                    OAuth2 authentication, it will automatically cancel the request and
                    send the client an error.
    
                    If `auto_error` is set to `False`, when the HTTP Authorization header
                    is not available, instead of erroring out, the dependency result will
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_server_journal.go

    // readerCtx is the interface that wraps io.Reader with a context
    type readerCtx struct {
    	ctx context.Context
    	io.Reader
    }
    
    func (r *readerCtx) Read(p []byte) (n int, err error) {
    	if err := r.ctx.Err(); err != nil {
    		return 0, err
    	}
    	return r.Reader.Read(p)
    }
    
    // newReaderCtx gets a context-aware io.Reader
    func newReaderCtx(ctx context.Context, r io.Reader) io.Reader {
    	return &readerCtx{
    		ctx:    ctx,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 26 18:56:28 UTC 2023
    - 13.5K bytes
    - Viewed (0)
Back to top