Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 499 for leaders (0.25 sec)

  1. okhttp/src/main/kotlin/okhttp3/Response.kt

          name: String,
          value: String,
        ) = commonAddHeader(name, value)
    
        /** Removes all headers named [name] on this builder. */
        open fun removeHeader(name: String) = commonRemoveHeader(name)
    
        /** Removes all headers on this builder and adds [headers]. */
        open fun headers(headers: Headers) = commonHeaders(headers)
    
        open fun body(body: ResponseBody) = commonBody(body)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/MultipartBody.kt

      }
    
      class Part private constructor(
        @get:JvmName("headers") val headers: Headers?,
        @get:JvmName("body") val body: RequestBody,
      ) {
        @JvmName("-deprecated_headers")
        @Deprecated(
          message = "moved to val",
          replaceWith = ReplaceWith(expression = "headers"),
          level = DeprecationLevel.ERROR,
        )
        fun headers(): Headers? = headers
    
        @JvmName("-deprecated_body")
        @Deprecated(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_security/test_tutorial005_an_py39.py

        assert response.json() == {"detail": "Not authenticated"}
        assert response.headers["WWW-Authenticate"] == "Bearer"
    
    
    @needs_py39
    def test_token(client: TestClient):
        access_token = get_access_token(scope="me", client=client)
        response = client.get(
            "/users/me", headers={"Authorization": f"Bearer {access_token}"}
        )
        assert response.status_code == 200, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:07:10 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelMultiProjectIntegrationTest.groovy

            exeProject.projectConfigurations['debug'].includePath == filePath("src/main/headers", "../lib/src/hello/headers")
            helloDllProject.projectConfigurations['debug'].includePath == filePath("src/hello/headers", "../greet/src/greetings/headers")
            helloLibProject.projectConfigurations['debug'].includePath == filePath("src/hello/headers", "../greet/src/greetings/headers")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 26K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

                includePath == filePath("src/main/headers", "src/helloApi/headers", "src/hello/headers")
            }
    
            and:
            final helloDllProject = projectFile("helloDll.vcxproj")
            with (helloDllProject.projectConfigurations['win32Debug']) {
                includePath == filePath("src/hello/headers", "src/helloApi/headers")
            }
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  6. pkg/config/validation/virtualservice_test.go

    				Headers: &networking.Headers{
    					Response: &networking.Headers_HeaderOperations{
    						Add: map[string]string{
    							"": "value",
    						},
    					},
    				},
    			}},
    		}, valid: false},
    		{name: "empty header name - response set", route: &networking.HTTPRoute{
    			Route: []*networking.HTTPRouteDestination{{
    				Destination: &networking.Destination{Host: "foo.baz"},
    				Headers: &networking.Headers{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 15:33:55 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_security/test_tutorial005.py

        response = client.get("/users/me", headers={"Authorization": "Bearer nonexistent"})
        assert response.status_code == 401, response.text
        assert response.json() == {"detail": "Could not validate credentials"}
        assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"'
    
    
    def test_incorrect_token_type():
        response = client.get(
            "/users/me", headers={"Authorization": "Notexistent testtoken"}
        )
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:07:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_security/test_tutorial005_an.py

        response = client.get("/users/me", headers={"Authorization": "Bearer nonexistent"})
        assert response.status_code == 401, response.text
        assert response.json() == {"detail": "Could not validate credentials"}
        assert response.headers["WWW-Authenticate"] == 'Bearer scope="me"'
    
    
    def test_incorrect_token_type():
        response = client.get(
            "/users/me", headers={"Authorization": "Notexistent testtoken"}
        )
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:07:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. pilot/pkg/features/experimental.go

    	EnableLeaderElection = env.Register("ENABLE_LEADER_ELECTION", true,
    		"If enabled (default), starts a leader election client and gains leadership before executing controllers. "+
    			"If false, it assumes that only one instance of istiod is running and skips leader election.").Get()
    
    	EnableSidecarServiceInboundListenerMerge = env.Register(
    		"PILOT_ALLOW_SIDECAR_SERVICE_INBOUND_LISTENER_MERGE",
    		false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller_test.go

    					Data: map[string]string{
    						"client-ca-file":                     string(someRandomCA),
    						"requestheader-username-headers":     `["alfa","bravo","charlie"]`,
    						"requestheader-group-headers":        `["delta"]`,
    						"requestheader-extra-headers-prefix": `["echo","foxtrot"]`,
    						"requestheader-client-ca-file":       string(anotherRandomCA),
    						"requestheader-allowed-names":        `["first","second"]`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 14.6K bytes
    - Viewed (0)
Back to top