Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for redirection (0.28 sec)

  1. pilot/pkg/networking/core/gateway_test.go

    				"*.org:80": {"*.org"},
    			},
    			expectedHTTPRoutes:    map[string]int{"*.org:80": 1},
    			expectStatefulSession: false,
    		},
    		{
    			name:            "http redirection not working when virtualservice not match http port",
    			virtualServices: []config.Config{virtualServiceHTTPS},
    			gateways:        []config.Config{httpsGateway},
    			routeName:       "https.443.https.gateway-https.default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  2. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                      (strdict "istio.io/rev" (.Revision | default "default"))
                      (strdict
                        "ambient.istio.io/redirection" "disabled"
                        "prometheus.io/path" "/stats/prometheus"
                        "prometheus.io/port" "15020"
                        "prometheus.io/scrape" "true"
                      ) | nindent 8 }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  3. src/net/http/server.go

    // If the url argument is non-nil, handler also deals with trailing-slash
    // redirection: when a path doesn't match exactly, the match is tried again
    // after appending "/" to the path. If that second match succeeds, the last
    // return value is the URL to redirect to.
    func (mux *ServeMux) matchOrRedirect(host, method, path string, u *url.URL) (_ *routingNode, matches []string, redirectTo *url.URL) {
    	mux.mu.RLock()
    	defer mux.mu.RUnlock()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    platforms (e.g. OpenShift) privileged: false # Custom configuration happens based on the CNI provider. # Possible values: "default", "multus" provider: "default" # Configure ambient settings ambient: # If enabled, ambient redirection will be enabled enabled: false # Set ambient redirection mode: "iptables" or "ebpf" redirectMode: "iptables" # Set ambient config dir path: defaults to /etc/ambient-config configDir: "" repair: enabled: true hub: "" tag: "" labelPods: true deletePods: true initContainerName:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    	setParallel(t)
    	mux := NewServeMux()
    	for _, e := range serveMuxRegister {
    		mux.Handle(e.pattern, e.h)
    	}
    
    	for _, tt := range serveMuxTests2 {
    		tries := 1 // expect at most 1 redirection if redirOk is true.
    		turl := tt.url
    		for {
    			u, e := url.Parse(turl)
    			if e != nil {
    				t.Fatal(e)
    			}
    			r := &Request{
    				Method: tt.method,
    				Host:   tt.host,
    				URL:    u,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_test.go

    	}
    }
    
    func TestTelemetryMetadata(t *testing.T) {
    	cases := []struct {
    		name      string
    		direction model.TrafficDirection
    		cluster   *cluster.Cluster
    		svcInsts  []model.ServiceTarget
    		service   *model.Service
    		want      *core.Metadata
    	}{
    		{
    			name:      "no cluster",
    			direction: model.TrafficDirectionInbound,
    			cluster:   nil,
    			svcInsts: []model.ServiceTarget{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_builder_test.go

    		endpoints       []*endpoint.LocalityLbEndpoints
    		direction       model.TrafficDirection
    		external        bool
    		expectedCluster *cluster.Cluster
    	}{
    		{
    			name:        "default EDS cluster",
    			clusterName: "foo",
    			discovery:   cluster.Cluster_EDS,
    			endpoints:   nil,
    			direction:   model.TrafficDirectionOutbound,
    			external:    false,
    			expectedCluster: &cluster.Cluster{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  8. src/reflect/value.go

    			if st := steps[0]; st.kind == abiStepStack {
    				// This value is on the stack. If part of a value is stack
    				// allocated, the entire value is according to the ABI. So
    				// just make an indirection into the allocated frame.
    				fl := flagIndir | flag(tv.Kind())
    				ret[i] = Value{tv, add(stackArgs, st.stkOff, "tv.Size() != 0"), fl}
    				// Note: this does introduce false sharing between results -
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CallTest.kt

      @Test
      fun follow20Redirects() {
        for (i in 0..19) {
          server.enqueue(
            MockResponse(
              code = 301,
              headers = headersOf("Location", "/${i + 1}"),
              body = "Redirecting to /" + (i + 1),
            ),
          )
        }
        server.enqueue(MockResponse(body = "Success!"))
        executeSynchronously("/0")
          .assertCode(200)
          .assertBody("Success!")
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  10. doc/go1.17_spec.html

    </p>
    
    <pre class="ebnf">
    ChannelType = ( "chan" | "chan" "&lt;-" | "&lt;-" "chan" ) ElementType .
    </pre>
    
    <p>
    The optional <code>&lt;-</code> operator specifies the channel <i>direction</i>,
    <i>send</i> or <i>receive</i>. If no direction is given, the channel is
    <i>bidirectional</i>.
    A channel may be constrained only to send or only to receive by
    <a href="#Assignments">assignment</a> or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top