Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 871 for Dealer (0.18 sec)

  1. docs/en/docs/tutorial/security/simple-oauth2.md

        ```
    
    !!! info
        The additional header `WWW-Authenticate` with value `Bearer` we are returning here is also part of the spec.
    
        Any HTTP (error) status code 401 "UNAUTHORIZED" is supposed to also return a `WWW-Authenticate` header.
    
        In the case of bearer tokens (our case), the value of that header should be `Bearer`.
    
        You can actually skip that extra header and it would still work.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. src/runtime/trace.go

    	//   to schedule the reader ASAP.
    	// - The reader has pending work to process for it's reader generation
    	//   (assuming readerGen is not lagging behind). Note that we also want
    	//   to be careful *not* to schedule the reader if there's no work to do.
    	// - The trace is shutting down. The trace stopper blocks on the reader
    	//   to finish, much like trace advancement.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. src/compress/bzip2/bzip2.go

    	repeats     uint     // the number of copies of lastByte to output.
    }
    
    // NewReader returns an io.Reader which decompresses bzip2 data from r.
    // If r does not also implement [io.ByteReader],
    // the decompressor may read more data than necessary from r.
    func NewReader(r io.Reader) io.Reader {
    	bz2 := new(reader)
    	bz2.br = newBitReader(r)
    	return bz2
    }
    
    const bzip2FileMagic = 0x425a // "BZ"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. fastapi/openapi/models.py

            class Config:
                extra = "allow"
    
    
    class ParameterInType(Enum):
        query = "query"
        header = "header"
        path = "path"
        cookie = "cookie"
    
    
    class Encoding(BaseModelWithConfig):
        contentType: Optional[str] = None
        headers: Optional[Dict[str, Union["Header", Reference]]] = None
        style: Optional[str] = None
        explode: Optional[bool] = None
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 22:49:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  5. pkg/security/security.go

    	}
    	return ""
    }
    
    // Header returns the authenticated remote address from AuthContext.
    func (ac *AuthContext) Header(header string) []string {
    	if ac.GrpcContext != nil {
    		if meta, ok := metadata.FromIncomingContext(ac.GrpcContext); ok {
    			return meta.Get(header)
    		}
    	} else if ac.Request != nil {
    		return ac.Request.Header.Values(header)
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/http2/Hpack.kt

          Header("content-disposition", ""),
          Header("content-encoding", ""),
          Header("content-language", ""),
          Header("content-length", ""),
          Header("content-location", ""),
          Header("content-range", ""),
          Header("content-type", ""),
          Header("cookie", ""),
          Header("date", ""),
          Header("etag", ""),
          Header("expect", ""),
          Header("expires", ""),
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtunnel_test.go

    // mockResponseWriter implements "http.ResponseWriter" interface
    type mockResponseWriter struct {
    	header     http.Header
    	written    []byte
    	statusCode int
    }
    
    func (mrw *mockResponseWriter) Header() http.Header { return mrw.header }
    func (mrw *mockResponseWriter) Write(p []byte) (int, error) {
    	mrw.written = append(mrw.written, p...)
    	return len(p), nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 02:21:50 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  8. security/pkg/nodeagent/caclient/providers/citadel/client_test.go

    	if !exists {
    		return "", fmt.Errorf("no HTTP authorization header exists")
    	}
    
    	for _, value := range authHeader {
    		if strings.HasPrefix(value, bearerTokenPrefix) {
    			return strings.TrimPrefix(value, bearerTokenPrefix), nil
    		}
    	}
    
    	return "", fmt.Errorf("no bearer token exists in HTTP authorization header")
    }
    
    // this test is to test whether the server side receive the correct token when
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 21:03:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/filters/authentication_test.go

    			requestHeaders: http.Header{
    				"X-Remote-User":          {"", "First header, second value"},
    				"A-Second-X-Remote-User": {"Second header, first value", "Second header, second value"},
    				"Another-X-Remote-User":  {"Third header, first value"}},
    		},
    		"user case-insensitive": {
    			nameHeaders:    []string{"x-REMOTE-user"},             // configured headers can be case-insensitive
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

                        logger.debug("url: {}", url);
                    }
                    try (CurlResponse response =
                            Curl.post(url).header("Authorization", "Bearer " + user.getAuthenticationResult().getAccessToken())
                                    .header("Accept", "application/json").header("Content-type", "application/json")
                                    .body("{\"securityEnabledOnly\":false}").execute()) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 28.1K bytes
    - Viewed (0)
Back to top