Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 983 for Destinations (0.24 sec)

  1. pilot/pkg/model/push_context.go

    			addDestination(h.Mirror.Host, h.Mirror.GetPort())
    		}
    		for _, m := range h.Mirrors {
    			if m.Destination != nil {
    				addDestination(m.Destination.Host, m.Destination.GetPort())
    			}
    		}
    	}
    	for _, t := range v.Tcp {
    		for _, r := range t.Route {
    			if r.Destination != nil {
    				addDestination(r.Destination.Host, r.Destination.GetPort())
    			}
    		}
    	}
    	for _, t := range v.Tls {
    		for _, r := range t.Route {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/gateway.go

    			// First, we build the standard cluster. We match on the SNI matching the cluster name
    			// (per the spec of AUTO_PASSTHROUGH), as well as all possible Istio mTLS ALPNs. This,
    			// along with filtering out plaintext destinations in EDS, ensures that our requests will
    			// always hit an Istio mTLS filter chain on the inbound side. As a result, it should not
    			// be possible for anyone to access a cluster without mTLS. Note that we cannot actually
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/expand_calls.go

    // but is transferred in registers.  In this case the register cursor tracks both operands; the register sources and
    // the memory destinations.
    // This returns the memory flowing out of the last store
    func (x *expandState) rewriteWideSelectToStores(pos src.XPos, b *Block, container, m0 *Value, at *types.Type, rc registerCursor) *Value {
    
    	if at.Size() == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/routing.go

    		},
    		workloadAgnostic: true,
    	})
    	t.RunTraffic(TrafficTestCase{
    		name: "set host header in destination",
    		config: `
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: default
    spec:
      hosts:
      - {{ (index .dst 0).Config.Service }}
      http:
      - route:
        - destination:
            host: {{ (index .dst 0).Config.Service }}
          headers:
            request:
              set:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    			}
    		}
    	}
    
    	// The BND prefix is part of the Intel Memory Protection Extensions (MPX).
    	// A REPN applied to certain control transfers is a BND prefix to bound
    	// the range of possible destinations. There's surprisingly little documentation
    	// about this, so we just do what libopcodes and xed agree on.
    	// In particular, it's unclear why a REPN applied to LOOP or JCXZ instructions
    	// does not turn into a BND.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/Destination.java

     *
     * @since 6.0
     */
    public enum Destination implements Serializable {
    
        StdOut(0),
        StdErr(1);
    
        private final int code;
    
         Destination(int code) {
            this.code = code;
        }
    
        public int getCode() {
            return code;
        }
    
        public static Destination fromCode(int code) {
            for (Destination d : Destination.values()) {
                if (d.code == code) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. internal/bucket/replication/destination.go

    )
    
    // DestinationARNPrefix - destination ARN prefix as per AWS S3 specification.
    const DestinationARNPrefix = "arn:aws:s3:::"
    
    // DestinationARNMinIOPrefix - destination ARN prefix for MinIO.
    const DestinationARNMinIOPrefix = "arn:minio:replication:"
    
    // Destination - destination in ReplicationConfiguration.
    type Destination struct {
    	XMLName      xml.Name `xml:"Destination" json:"Destination"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. tests/integration/ambient/baseline_test.go

    				t.ConfigIstio().Eval(apps.Namespace.Name(), map[string]string{
    					"Destination": dst.Config().Service,
    				}, `apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      name: route
    spec:
      hosts:
      - "{{.Destination}}"
      http:
      - route:
        - destination:
            host: "{{.Destination}}"
            subset: v1
    ---
    apiVersion: networking.istio.io/v1beta1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context_test.go

    				for _, dst := range route.Route {
    					gotHTTPHosts = append(gotHTTPHosts, dst.Destination.Host)
    				}
    			}
    		}
    		if !reflect.DeepEqual(gotHTTPHosts, []string{"private.ns1", "public.ns3", "delegate.ns2"}) {
    			t.Errorf("got %+v", gotHTTPHosts)
    		}
    	})
    
    	t.Run("destinations by gateway", func(t *testing.T) {
    		got := ps.virtualServiceIndex.destinationsByGateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.proto

    message OutboundTrafficPolicyConfig {
      // Specifies the sidecar's default behavior when handling outbound traffic from the application.
      enum Mode {
        // Outbound traffic to unknown destinations will be allowed, in case there are no services or ServiceEntries for the destination port
        ALLOW_ANY = 0;
        // Restrict outbound traffic to services defined in the service registry as well as those defined through ServiceEntries
        REGISTRY_ONLY = 1;
      }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top