Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for outCount (0.45 sec)

  1. src/reflect/type.go

    func canRangeFunc(t *abi.Type) bool {
    	if t.Kind() != abi.Func {
    		return false
    	}
    	f := t.FuncType()
    	if f.InCount != 1 || f.OutCount != 0 {
    		return false
    	}
    	y := f.In(0)
    	if y.Kind() != abi.Func {
    		return false
    	}
    	yield := y.FuncType()
    	return yield.InCount == 1 && yield.OutCount == 1 && yield.Out(0).Kind() == abi.Bool
    }
    
    func (t *rtype) CanSeq2() bool {
    	switch t.Kind() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/configdump.json

                    {
                        "endpoint_config": {
                            "@type": "type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment",
                            "cluster_name": "outbound|9080||reviews.default.svc.cluster.local",
                            "endpoints": [
                                {
                                    "locality": {},
                                    "lb_endpoints": [
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 66K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/sidecar_simulation_test.go

    				// match no VS, get default config
    				"alt-known.default.svc.cluster.local": {"outbound|80||alt-known.default.svc.cluster.local"},
    				"known.default.svc.cluster.local":     {"outbound|80||known.default.svc.cluster.local"},
    				// Wildcard doesn't match any known services, insert it as-is
    				"*.unknown.example.com": {"outbound|80||arbitrary.example.com"},
    			},
    		},
    		{
    			name: "wildcard match with sidecar",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceregistry_test.go

    		makeIstioObject(t, s.Store(), workloadEntry)
    		expectEndpoints(t, s, "outbound|80||service.namespace.svc.cluster.local", []string{"2.3.4.5:80"}, nil)
    
    		newSvc := service.DeepCopy()
    		newSvc.Spec.Ports[0].Port = 8080
    		makeService(t, s.KubeClient().Kube(), newSvc)
    		expectEndpoints(t, s, "outbound|80||service.namespace.svc.cluster.local", nil, nil)
    		expectEndpoints(t, s, "outbound|8080||service.namespace.svc.cluster.local", []string{"2.3.4.5:8080"}, nil)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/httproute_test.go

    				"test.local:80": {"test.local"},
    				"test:80":       {"test"},
    			},
    			map[string]string{
    				"allow_any":     "PassthroughCluster",
    				"test.local:80": "outbound|80||test.local",
    				"test:80":       "outbound|80||test",
    			},
    		},
    		{
    			"more exact first with full cluster domain",
    			[]*model.Service{
    				buildHTTPService("test.default.svc.cluster.local", visibility.Public, "", "default", 80),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener.go

    	AutoOverTCP
    )
    
    // A set of pre-allocated variables related to protocol sniffing logic for
    // propagating the ALPN to upstreams
    var (
    	// These are sniffed by the HTTP Inspector in the outbound listener
    	// We need to forward these ALPNs to upstream so that the upstream can
    	// properly use an HTTP or TCP listener
    	plaintextHTTPALPNs = func() []string {
    		if features.HTTP10 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. pilot/pkg/model/telemetry_logging_test.go

    			"client - gateway defined by targetRef",
    			[]config.Config{newTelemetry("default", targetRefClient)},
    			networking.ListenerClassGateway,
    			sidecar,
    			nil,
    			[]string{"envoy"},
    		},
    		{
    			"client - outbound",
    			[]config.Config{newTelemetry("istio-system", client)},
    			networking.ListenerClassSidecarOutbound,
    			sidecar,
    			nil,
    			[]string{"envoy"},
    		},
    		{
    			"client - inbound",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

    }
    
    // OutboundTrafficPolicyConfig controls the default behavior of the sidecar for handling outbound traffic from the application.
    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
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/route/route.go

    		}
    	}
    }
    
    // BuildDefaultHTTPOutboundRoute builds a default outbound route, including a retry policy.
    func BuildDefaultHTTPOutboundRoute(clusterName string, operation string, mesh *meshconfig.MeshConfig) *route.Route {
    	out := buildDefaultHTTPRoute(clusterName, operation)
    	// Add a default retry policy for outbound routes.
    	out.GetRoute().RetryPolicy = retry.ConvertPolicy(mesh.GetDefaultHttpRetryPolicy(), false)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    			want: gatewayPriorityOut,
    		},
    		{
    			name: "sidecar outbound lds",
    			args: args{
    				patchContext: networking.EnvoyFilter_SIDECAR_OUTBOUND,
    				proxy:        sidecarProxy,
    				push:         push,
    				listeners:    sidecarOutboundIn,
    				skipAdds:     false,
    			},
    			want: sidecarOutboundOut,
    		},
    		{
    			name: "sidecar outbound lds - skip adds",
    			args: args{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
Back to top