Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 215 for Wagenet (0.26 sec)

  1. docs/em/docs/tutorial/header-params.md

    `Header` โœ”๏ธ ๐Ÿฅ โž• ๐Ÿ› ๏ธ ๐Ÿ”› ๐Ÿ” โšซ๏ธโ” `Path`, `Query` & `Cookie` ๐Ÿšš.
    
    ๐ŸŒ… ๐Ÿฉ ๐ŸŽš ๐ŸŽ "๐Ÿ” " ๐Ÿฆน, ๐Ÿ’ญ "โž– ๐Ÿ”ฃ" (`-`).
    
    โœ‹๏ธ ๐Ÿ”ข ๐Ÿ’– `user-agent` โŒ ๐Ÿ.
    
    , ๐Ÿ”ข, `Header` ๐Ÿ”œ ๐Ÿ—œ ๐Ÿ”ข ๐Ÿ“› ๐Ÿฆน โšช๏ธโžก๏ธ ๐ŸŽฆ (`_`) ๐Ÿ”  (`-`) โš— & ๐Ÿ“„ ๐ŸŽš.
    
    , ๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ” ๐ŸŽš ๐Ÿ’ผ-๐Ÿ˜›,, ๐Ÿ‘† ๐Ÿ’ช ๐Ÿ“ฃ ๐Ÿ‘ซ โฎ๏ธ ๐Ÿฉ ๐Ÿ ๐Ÿ‘— (๐Ÿ’ญ "๐Ÿ”ก").
    
    , ๐Ÿ‘† ๐Ÿ’ช โš™๏ธ `user_agent` ๐Ÿ‘† ๐Ÿ›Ž ๐Ÿ”œ ๐Ÿ ๐Ÿ“Ÿ, โ†ฉ๏ธ ๐Ÿ’†โ€โ™‚ ๐ŸŽฏ ๐Ÿฅ‡ ๐Ÿ”ค `User_Agent` โš–๏ธ ๐Ÿ•ณ ๐ŸŽ.
    
    ๐Ÿšฅ ๐Ÿค” ๐Ÿ‘† ๐Ÿ’ช โŽ ๐Ÿง ๐Ÿ› ๏ธ ๐ŸŽฆ ๐Ÿ” , โš’ ๐Ÿ”ข `convert_underscores` `Header` `False`:
    
    === "๐Ÿ 3๏ธโƒฃ.6๏ธโƒฃ & ๐Ÿ”›"
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Sat Apr 01 09:26:04 GMT 2023
    - 3.2K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/templates/istiod-injector-configmap.yaml

          grpc-simple: |
    {{ .Files.Get "files/grpc-simple.yaml" | trim | indent 8 }}
    {{- end }}
    {{- if not (hasKey .Values.sidecarInjectorWebhook.templates "grpc-agent") }}
          grpc-agent: |
    {{ .Files.Get "files/grpc-agent.yaml" | trim | indent 8 }}
    {{- end }}
    {{- if not (hasKey .Values.sidecarInjectorWebhook.templates "waypoint") }}
          waypoint: |
    {{ .Files.Get "files/waypoint.yaml" | trim | indent 8 }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Feb 21 03:10:21 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  3. istioctl/pkg/multixds/gather.go

    				if err != nil {
    					fmt.Fprintf(os.Stderr, "Skip the agent in Pod %s due to the error: %s\n", namespacedName, err.Error())
    					continue
    				}
    				responses = append(responses, resp)
    			}
    			token = list.ListMeta.GetContinue()
    			if token == "" {
    				break
    			}
    		}
    	} else {
    		// If there is a specific pod name in ResourceName, use the agent in the pod.
    		if len(dr.ResourceNames) != 1 {
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Mar 08 08:38:19 GMT 2024
    - 13.6K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/files/profile-preview.yaml

    # This is intended to explore new features coming to Istio.
    # Stability, security, and performance are not guaranteed - use at your own risk.
    meshConfig:
      defaultConfig:
        proxyMetadata:
          # Enable Istio agent to handle DNS requests for known hosts
          # Unknown hosts will automatically be resolved using upstream dns servers in resolv.conf
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 08:50:01 GMT 2024
    - 451 bytes
    - Viewed (0)
  5. manifests/helm-profiles/preview.yaml

    # This is intended to explore new features coming to Istio.
    # Stability, security, and performance are not guaranteed - use at your own risk.
    meshConfig:
      defaultConfig:
        proxyMetadata:
          # Enable Istio agent to handle DNS requests for known hosts
          # Unknown hosts will automatically be resolved using upstream dns servers in resolv.conf
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 08:50:01 GMT 2024
    - 451 bytes
    - Viewed (0)
  6. okcurl/src/test/kotlin/okhttp3/curl/MainTest.kt

        assertThat(request.url.toString()).isEqualTo("http://example.com/")
        assertThat(request.header("User-Agent")).isEqualTo("foo")
        assertThat(request.body).isNull()
      }
    
      @Test
      fun defaultUserAgent() {
        val request = fromArgs("http://example.com").createRequest()
        assertThat(request.header("User-Agent")!!).startsWith("okcurl/")
      }
    
      @Test
      fun headerSplitWithDate() {
        val request =
    Plain Text
    - Registered: Fri Apr 19 11:42:09 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/header-params.md

    But a variable like `user-agent` is invalid in Python.
    
    So, by default, `Header` will convert the parameter names characters from underscore (`_`) to hyphen (`-`) to extract and document the headers.
    
    Also, HTTP headers are case-insensitive, so, you can declare them with standard Python style (also known as "snake_case").
    
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Tue Oct 17 05:59:11 GMT 2023
    - 5.8K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/files/profile-preview.yaml

    # This is intended to explore new features coming to Istio.
    # Stability, security, and performance are not guaranteed - use at your own risk.
    meshConfig:
      defaultConfig:
        proxyMetadata:
          # Enable Istio agent to handle DNS requests for known hosts
          # Unknown hosts will automatically be resolved using upstream dns servers in resolv.conf
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 08:50:01 GMT 2024
    - 451 bytes
    - Viewed (0)
  9. manifests/charts/ztunnel/files/profile-preview.yaml

    # This is intended to explore new features coming to Istio.
    # Stability, security, and performance are not guaranteed - use at your own risk.
    meshConfig:
      defaultConfig:
        proxyMetadata:
          # Enable Istio agent to handle DNS requests for known hosts
          # Unknown hosts will automatically be resolved using upstream dns servers in resolv.conf
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Jan 10 08:50:01 GMT 2024
    - 451 bytes
    - Viewed (0)
  10. docs/ja/docs/tutorial/header-params.md

    ใปใจใ‚“ใฉใฎๆจ™ๆบ–ใƒ˜ใƒƒใƒ€ใƒผใฏใ€ใ€Œใƒžใ‚คใƒŠใ‚น่จ˜ๅทใ€๏ผˆ`-`๏ผ‰ใจใ—ใฆใ‚‚็Ÿฅใ‚‰ใ‚Œใ‚‹ใ€Œใƒใ‚คใƒ•ใƒณใ€ใงๅŒบๅˆ‡ใ‚‰ใ‚Œใฆใ„ใพใ™ใ€‚
    
    ใ—ใ‹ใ—ใ€`user-agent`ใฎใ‚ˆใ†ใชๅค‰ๆ•ฐใฏPythonใงใฏ็„กๅŠนใงใ™ใ€‚
    
    ใใฎใŸใ‚ใ€ใƒ‡ใƒ•ใ‚ฉใƒซใƒˆใงใฏใ€`Header`ใฏใƒ‘ใƒฉใƒกใƒผใ‚ฟใฎๆ–‡ๅญ—ใ‚’ใ‚ขใƒณใƒ€ใƒผใ‚นใ‚ณใ‚ข๏ผˆ`_`๏ผ‰ใ‹ใ‚‰ใƒใ‚คใƒ•ใƒณ๏ผˆ`-`๏ผ‰ใซๅค‰ๆ›ใ—ใฆใ€ใƒ˜ใƒƒใƒ€ใƒผใ‚’ๆŠฝๅ‡บใ—ใฆๆ–‡ๆ›ธๅŒ–ใ—ใพใ™ใ€‚
    
    ใพใŸใ€HTTPใƒ˜ใƒƒใƒ€ใฏๅคงๆ–‡ๅญ—ๅฐๆ–‡ๅญ—ใ‚’ๅŒบๅˆฅใ—ใชใ„ใฎใงใ€Pythonใฎๆจ™ๆบ–ใ‚นใ‚ฟใ‚คใƒซ๏ผˆๅˆฅๅใ€Œใ‚นใƒใƒผใ‚ฏใ‚ฑใƒผใ‚นใ€๏ผ‰ใงๅฎฃ่จ€ใ™ใ‚‹ใ“ใจใŒใงใใพใ™ใ€‚
    
    ใใฎใŸใ‚ใ€`User_Agent`ใชใฉใฎใ‚ˆใ†ใซๆœ€ๅˆใฎๆ–‡ๅญ—ใ‚’ๅคงๆ–‡ๅญ—ใซใ™ใ‚‹ๅฟ…่ฆใฏใชใใ€้€šๅธธใฎPythonใ‚ณใƒผใƒ‰ใจๅŒใ˜ใ‚ˆใ†ใซ`user_agent`ใ‚’ไฝฟ็”จใ™ใ‚‹ใ“ใจใŒใงใใพใ™ใ€‚
    
    ใ‚‚ใ—ใชใ‚“ใ‚‰ใ‹ใฎ็†็”ฑใงใ‚ขใƒณใƒ€ใƒผใ‚นใ‚ณใ‚ขใ‹ใ‚‰ใƒใ‚คใƒ•ใƒณใธใฎ่‡ชๅ‹•ๅค‰ๆ›ใ‚’็„กๅŠนใซใ™ใ‚‹ๅฟ…่ฆใŒใ‚ใ‚‹ๅ ดๅˆใฏใ€`Header`ใฎ`convert_underscores`ใซ`False`ใ‚’่จญๅฎšใ—ใฆใใ ใ•ใ„:
    Plain Text
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Sat Oct 17 13:55:39 GMT 2020
    - 3.8K bytes
    - Viewed (0)
Back to top