Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for authority (0.35 sec)

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

            )
          }
    
          // Authority.
          var hasUsername = false
          var hasPassword = false
          val slashCount = input.slashCount(pos, limit)
          if (slashCount >= 2 || base == null || base.scheme != this.scheme) {
            // Read an authority if either:
            //  * The input starts with 2 or more slashes. These follow the scheme if it exists.
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Tue Jan 09 12:33:05 GMT 2024
    - 63.5K bytes
    - Viewed (1)
  2. 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)
  3. 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)
  4. 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)
  5. istioctl/pkg/proxyconfig/testdata/config_dump.json

                      "name": "inbound-vip|8100||httpbin.default.svc.cluster.local-http"
                    },
                    {
                      "filters": [
                        {
                          "name": "connect_authority",
                          "typed_config": {
                            "@type": "type.googleapis.com/envoy.extensions.filters.network.set_filter_state.v3.Config",
                            "on_new_connection": [
    Json
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Jan 03 23:08:06 GMT 2024
    - 54.8K bytes
    - Viewed (1)
  6. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        val expectedRequestHeaders =
          listOf(
            Header(Header.TARGET_METHOD, "GET"),
            Header(Header.TARGET_SCHEME, "https"),
            Header(Header.TARGET_AUTHORITY, "squareup.com"),
            Header(Header.TARGET_PATH, "/cached"),
          )
        peer.sendFrame().pushPromise(3, 2, expectedRequestHeaders)
        val expectedResponseHeaders =
          listOf(
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 75.4K bytes
    - Viewed (0)
  7. common/scripts/metallb-native.yaml

                description: IPAddressPoolSpec defines the desired state of IPAddressPool.
                properties:
                  addresses:
                    description: A list of IP address ranges over which MetalLB has authority.
                      You can list multiple ranges in a single pool, they will all share
                      the same settings. Each range can be either a CIDR prefix, or an
                      explicit start-end range of IPs.
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  8. docs/bucket/notifications/README.md

    streaming_max_pub_acks_in_flight  (number)    number of messages to publish without waiting for ACKs
    streaming_cluster_id              (string)    unique ID for NATS streaming cluster
    cert_authority                    (string)    path to certificate chain of the target NATS server
    client_cert                       (string)    client cert for NATS mTLS auth
    Plain Text
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 84K bytes
    - Viewed (2)
  9. istioctl/pkg/describe/describe.go

    	}
    	return strings.Join(matches, ", ")
    }
    
    func renderMatch(match *v1alpha3.HTTPMatchRequest) string {
    	retval := "Match: "
    	// TODO Are users interested in seeing Scheme, Method, Authority?
    	if match.Uri != nil {
    		retval += renderStringMatch(match.Uri)
    
    		if match.IgnoreUriCase {
    			retval += " uncased"
    		}
    	}
    
    	if len(match.Headers) > 0 {
    		headerConds := []string{}
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 50.4K bytes
    - Viewed (0)
  10. tensorflow/BUILD

        visibility = ["//visibility:public"],
        deps = [
            ":tensorflow_py_no_contrib",
            "//tensorflow/lite/python:analyzer",
            "//tensorflow/lite/python:lite",
            "//tensorflow/lite/python/authoring",
        ],
    )
    
    py_library(
        name = "tensorflow_py_no_contrib",
        srcs = select({
            "api_version_2": [":tf_python_api_gen_v2"],
            "//conditions:default": [":tf_python_api_gen_v1"],
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (8)
Back to top