Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 265 for redirection (0.16 sec)

  1. docs/en/docs/tutorial/response-status-code.md

        * A special case is `204`, "No Content".  This response is used when there is no content to return to the client, and so the response must not have a body.
    * **`300`** and above are for "Redirection".  Responses with these status codes may or may not have a body, except for `304`, "Not Modified", which must not have one.
    * **`400`** and above are for "Client error" responses. These are the second type you would probably use the most.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 29 14:02:58 UTC 2020
    - 4K bytes
    - Viewed (0)
  2. mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/MockResponse.kt

        }
    
      fun setResponseCode(code: Int): MockResponse {
        val reason =
          when (code) {
            in 100..199 -> "Informational"
            in 200..299 -> "OK"
            in 300..399 -> "Redirection"
            in 400..499 -> "Client Error"
            in 500..599 -> "Server Error"
            else -> "Mock Response"
          }
        return apply { status = "HTTP/1.1 $code $reason" }
      }
    
      fun clearHeaders() =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/output/pilot_override_kubernetes.golden.yaml

        matchLabels:
          istio: pilot
      strategy:
        rollingUpdate:
          maxSurge: 100%
          maxUnavailable: 25%
      template:
        metadata:
          annotations:
            ambient.istio.io/redirection: disabled
            prometheus.io/port: "15014"
            prometheus.io/scrape: "true"
            sidecar.istio.io/inject: "false"
          labels:
            app: istiod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 01 22:07:45 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/authorizationpolicies.yaml

            values: [ "https://accounts.google.com" ]
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: sleep
        version: v1
      annotations:
        ambient.istio.io/redirection: enabled
      name: sleep-55bf89f8c9-wzfrh
      namespace: test-ambient
    spec:
      containers:
        - image: gcr.io/google-samples/microservices-demo/adservice:v0.1.1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 08 14:14:46 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/options/options.go

    	envoyStatusPortEnv = env.Register("ENVOY_STATUS_PORT", 15021,
    		"Envoy health status port value").Get()
    	envoyPrometheusPortEnv = env.Register("ENVOY_PROMETHEUS_PORT", 15090,
    		"Envoy prometheus redirection port value").Get()
    
    	// Defined by https://github.com/grpc/proposal/blob/c5722a35e71f83f07535c6c7c890cf0c58ec90c0/A27-xds-global-load-balancing.md#xdsclient-and-bootstrap-file
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. istioctl/pkg/writer/envoy/configdump/cluster.go

    	}
    	sort.Slice(clusters, func(i, j int) bool {
    		iDirection, iSubset, iName, iPort := safelyParseSubsetKey(clusters[i].Name)
    		jDirection, jSubset, jName, jPort := safelyParseSubsetKey(clusters[j].Name)
    		if iName == jName {
    			if iSubset == jSubset {
    				if iPort == jPort {
    					return iDirection < jDirection
    				}
    				return iPort < jPort
    			}
    			return iSubset < jSubset
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 05:38:17 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/redirector/TestOutputRedirectorTest.groovy

        }
    
        def "disallows starting redirecting if test owner not provided"() {
            when: redirector.startRedirecting()
            then: thrown(AssertionError)
        }
    
        def "allows setting output owner"() {
            when:
            redirector.setOutputOwner("1")
            redirector.startRedirecting()
    
            then:
            redirector.outForwarder.outputOwner == "1"
            redirector.errForwarder.outputOwner == "1"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/doc/c4/lib/C4.puml

    ' Relationship
    ' ##################################
    
    !define Rel_(e_alias1, e_alias2, e_label, e_direction="") e_alias1 e_direction e_alias2 : "===e_label"
    !define Rel_(e_alias1, e_alias2, e_label, e_techn, e_direction="") e_alias1 e_direction e_alias2 : "===e_label\n//<size:TECHN_FONT_SIZE>[e_techn]</size>//"
    
    !define Rel(e_from,e_to, e_label) Rel_(e_from,e_to, e_label, "-->")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  9. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/CaptureTestOutputTestResultProcessorTest.groovy

    import org.gradle.api.internal.tasks.testing.redirector.TestOutputRedirector
    import spock.lang.Specification
    import spock.lang.Subject
    
    class CaptureTestOutputTestResultProcessorTest extends Specification {
    
        TestResultProcessor target = Mock()
        TestOutputRedirector redirector = Mock()
        @Subject processor = new CaptureTestOutputTestResultProcessor(target, redirector)
    
        def "starts capturing output"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. istioctl/pkg/writer/ztunnel/configdump/connections.go

    			continue
    		}
    		name := fmt.Sprintf("%s.%s", wl.Info.Name, wl.Info.Namespace)
    		if filter.Direction != "outbound" {
    			for _, c := range wl.Connections.Inbound {
    				fmt.Fprintf(w, "%v\tInbound\t%v\t%v\t%v\n", name, lookupIP(c.ActualDst), lookupIP(c.Src), c.OriginalDst)
    			}
    		}
    		if filter.Direction != "inbound" {
    			for _, c := range wl.Connections.Outbound {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top