Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 97 for GW (0.15 sec)

  1. src/crypto/tls/testdata/Client-TLSv13-KeyUpdate

    00000160  e3 74 f9 b3 52 bf 0e 0b  e1 31 7c 2c cb fd f2 8c  |.t..R....1|,....|
    00000170  bf 27 40 6d 26 b7 62 47  56 91 22 00 67 9a df 4f  |.'@m&.bGV.".g..O|
    00000180  f0 47 57 3c a6 46 4d 16  f6 8d fc 2d 91 c4 1a bf  |.GW<.FM....-....|
    00000190  38 63 ec 63 fe 97 14 80  aa 5b 60 ff c8 77 57 9c  |8c.c.....[`..wW.|
    000001a0  d5 86 a6 76 96 b3 e9 db  c9 eb dd 94 84 2a 46 f5  |...v.........*F.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. pilot/pkg/model/gateway.go

    		portNumber, _ = strconv.Atoi(port)
    		return
    	} else if strings.HasPrefix(name, "https.") && strings.Count(name, ".") == 4 {
    		name = name[len("https."):]
    		// format: https.<port>.<port_name>.<gw name>.<gw namespace>
    		portNums, rest, ok := strings.Cut(name, ".")
    		if !ok {
    			return
    		}
    		portNumber, _ = strconv.Atoi(portNums)
    		portName, rest, ok = strings.Cut(rest, ".")
    		if !ok {
    			return
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. src/crypto/tls/testdata/Server-TLSv13-IssueTicketPreDisable

    000001e0  5e 63 65 e6 6f f1 05 95  40 e3 71 15 c6 bd ec 60  |^ce.o...@.q....`|
    000001f0  01 08 2b 23 d6 be c6 7f  00 aa 32 78 cb 77 d8 5c  |..+#......2x.w.\|
    00000200  e5 b6 b8 be 08 84 1a 47  57 b7 d8 72 27 e7 f6 08  |.......GW..r'...|
    00000210  7b 8a fa d8 a6 06 15 68  cc 90 a4 fe 8e 25 5c cb  |{......h.....%\.|
    00000220  03 e8 ab 19 32 05 f4 88  d9 11 03 72 48 a3 a9 b2  |....2......rH...|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. pilot/pkg/bootstrap/server.go

    			})
    			s.environment.GatewayAPIController.RegisterEventHandler(gvk.Secret, func(_ config.Config, gw config.Config, _ model.Event) {
    				s.XDSServer.ConfigUpdate(&model.PushRequest{
    					Full: true,
    					ConfigsUpdated: map[model.ConfigKey]struct{}{
    						{
    							Kind:      kind.KubernetesGateway,
    							Name:      gw.Name,
    							Namespace: gw.Namespace,
    						}: {},
    					},
    					Reason: model.NewReasonStats(model.SecretTrigger),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  5. pilot/pkg/xds/bench_test.go

    	out := make(map[string]*meshconfig.Network, n)
    	for i := 0; i < n; i++ {
    		out[fmt.Sprintf("network-%d", i)] = &meshconfig.Network{
    			Gateways: []*meshconfig.Network_IstioNetworkGateway{{
    				Gw:   &meshconfig.Network_IstioNetworkGateway_Address{Address: fmt.Sprintf("35.0.0.%d", i)},
    				Port: 15443,
    			}},
    		}
    	}
    	return out
    }
    
    // BenchmarkEDS measures performance of EDS config generation
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/gateway_test.go

    		name            string
    		gateways        []config.Config
    		virtualServices []config.Config
    	}{
    		{
    			name: "no sni overlap",
    			gateways: []config.Config{
    				{
    					Meta: config.Meta{Name: "gw", Namespace: "testns", GroupVersionKind: gvk.Gateway},
    					Spec: &networking.Gateway{
    						Servers: []*networking.Server{
    							{
    								Port:  &networking.Port{Name: "example", Number: 443, Protocol: "TLS"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  7. pkg/proxy/winkernel/proxier_test.go

    	destinationPrefix = "192.168.2.0/24"
    	providerAddress   = "10.0.0.3"
    	guid              = "123ABC"
    	endpointGuid1     = "EPID-1"
    	loadbalancerGuid1 = "LBID-1"
    	endpointLocal     = "EP-LOCAL"
    	endpointGw        = "EP-GW"
    	epIpAddressGw     = "192.168.2.1"
    	epMacAddressGw    = "00-11-22-33-44-66"
    )
    
    func newHnsNetwork(networkInfo *hnsNetworkInfo) *hcn.HostComputeNetwork {
    	var policies []hcn.NetworkPolicy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 28 14:30:51 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  8. pkg/config/validation/agent/validation.go

    			if ok := labels.IsDNS1123Label(e.FromRegistry); !ok {
    				errs = multierror.Append(errs, fmt.Errorf("invalid registry name: %v", e.FromRegistry))
    			}
    		}
    	}
    	for _, n := range network.Gateways {
    		switch g := n.Gw.(type) {
    		case *meshconfig.Network_IstioNetworkGateway_RegistryServiceName:
    			if err := ValidateFQDN(g.RegistryServiceName); err != nil {
    				errs = multierror.Append(errs, err)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  9. pkg/test/framework/components/istio/kube.go

    		// this is a traditional primary cluster, install the eastwest gateway
    
    		// there are a few tests that require special gateway setup which will cause eastwest gateway fail to start
    		// exclude these tests from installing eastwest gw for now
    		if !i.cfg.DeployEastWestGW {
    			return nil
    		}
    
    		if err := i.deployEastWestGateway(c, i.primaryIOP.spec.Revision, i.eastwestIOP.file); err != nil {
    			return err
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/tests/opens2s_gnmt_mixed_precision.pbtxt.gz

    ��:�fg�6�4�j�1�-��rQ�.F$�t'�T��i���i(�3N�Lg�g#�Ť*��e��>zg�+�� 8Z\��@��?K�iG�:-�i�i-�;��� ���� �?��u��Z�� 6Yo�/��V~����Dʶ9ǚr+q|�ُ�2p�}h�{���jN�5���V�b�'�y~.y�[��E�}���R��?Wjl��oE�|F7�͚L����?sXo)v�|��y�9X�,W��d���C�%�1;���65,�����'�(/-#�_"�gw�4�ݤ�2�4R��n)��?�ۡ,�g7�8�4Bb���{勏�|5J�z����Hgc�) �B~ڒ%��ur����(��\8Z���m�ѣɉr��6 !2q L,y��n;��ID2,��Qr� ��)^ �ƥ�� I�p��n~���-�ֿ����6�� ���>�s���#96�H�@����sl��M�������k�9Z��ŴYX��0y���@EQ�: T��'�0�+6��6i�|�ז�.�k��?��+]��K�A�...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 18:14:27 UTC 2019
    - 195.5K bytes
    - Viewed (0)
Back to top