Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for authority (0.22 sec)

  1. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

            }
        }
    
        public AuthenticationResult getAccessToken(final String refreshToken) {
            final String authority = getAuthority() + getTenant() + "/";
            if (logger.isDebugEnabled()) {
                logger.debug("refreshToken: {}, authority: {}", refreshToken, authority);
            }
            ExecutorService service = null;
            try {
                service = Executors.newFixedThreadPool(1);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.1K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CallTest.kt

        assertThat(connect.headers["Host"]).isEqualTo("[::1]:$port")
        assertThat(connect.headers[":authority"]).isNull()
        val get = server.takeRequest()
        assertThat(get.requestLine).isEqualTo("GET / HTTP/1.1")
        assertThat(get.headers["Host"]).isEqualTo("[::1]:$port")
        assertThat(get.headers[":authority"]).isNull()
        assertThat(get.requestUrl).isEqualTo(url)
      }
    
      @Test
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
  3. manifests/charts/base/crds/crd-all.gen.yaml

                          type: object
                        rewrite:
                          description: Rewrite HTTP URIs and Authority headers.
                          properties:
                            authority:
                              description: rewrite the Authority/Host header with this
                                value.
                              type: string
                            uri:
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:47 GMT 2024
    - 606.1K bytes
    - Viewed (0)
  4. internal/event/target/nats.go

    	NATSTLS           = "tls"
    	NATSTLSSkipVerify = "tls_skip_verify"
    	NATSPingInterval  = "ping_interval"
    	NATSQueueDir      = "queue_dir"
    	NATSQueueLimit    = "queue_limit"
    	NATSCertAuthority = "cert_authority"
    	NATSClientCert    = "client_cert"
    	NATSClientKey     = "client_key"
    
    	// Streaming constants - deprecated
    	NATSStreaming                   = "streaming"
    	NATSStreamingClusterID          = "streaming_cluster_id"
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Feb 27 18:11:55 GMT 2024
    - 12.8K bytes
    - Viewed (0)
  5. architecture/ambient/ztunnel.md

    HBONE is just a standard HTTP `CONNECT` tunnel, over mutual TLS with mesh (SPIFFE) certificates, on a well known port (15008).
    The target destination address is set in the `:authority` header, and additional headers can be included as well.
    Currently, only HTTP/2 is supported, though HTTP/1.1 and HTTP/3 are planned.
    
    Currently, SNI is not set by Istio clients and ignored by Istio servers.
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Thu Apr 25 22:35:16 GMT 2024
    - 16.6K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/crd-all.gen.yaml

                          type: object
                        rewrite:
                          description: Rewrite HTTP URIs and Authority headers.
                          properties:
                            authority:
                              description: rewrite the Authority/Host header with this
                                value.
                              type: string
                            uri:
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 20:20:47 GMT 2024
    - 606.1K bytes
    - Viewed (0)
  7. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

        // Adapt the request and response into our Request and Response domain model.
        val scheme = if (request.handshake != null) "https" else "http"
        val authority = request.headers["Host"] // Has host and port.
        val fancyRequest =
          Request.Builder()
            .url("$scheme://$authority/")
            .headers(request.headers)
            .build()
        val fancyResponse =
          Response.Builder()
            .code(webSocketResponse.code)
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Mar 31 17:16:15 GMT 2024
    - 37.4K bytes
    - Viewed (0)
  8. istioctl/pkg/writer/compare/testdata/configdump.json

                                  }
                                }
                              },
                              {
                                "name": "connect_authority",
                                "typed_config": {
                                  "@type": "type.googleapis.com/envoy.extensions.filters.http.set_filter_state.v3.Config",
                                  "on_request_headers": [
    Json
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 52K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                                  }
                                }
                              },
                              {
                                "name": "connect_authority",
                                "typed_config": {
                                  "@type": "type.googleapis.com/envoy.extensions.filters.http.set_filter_state.v3.Config",
                                  "on_request_headers": [
    Json
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Mar 12 10:02:09 GMT 2024
    - 51.6K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        val request = server.takeRequest()
        assertThat(request.requestLine).isEqualTo("GET /foo HTTP/1.1")
        assertThat(request.headers[":scheme"]).isEqualTo(scheme)
        assertThat(request.headers[":authority"]).isEqualTo("${server.hostName}:${server.port}")
      }
    
      @ParameterizedTest
      @ArgumentsSource(ProtocolParamProvider::class)
      fun get204Response(
        protocol: Protocol,
        mockWebServer: MockWebServer,
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Thu Apr 11 22:09:35 GMT 2024
    - 75.3K bytes
    - Viewed (0)
Back to top