Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for 180x180 (0.34 sec)

  1. pkg/proxy/nftables/helpers_test.go

    	add chain ip testing endpoint-5OJB2KTY-ns1/svc1/tcp/p80__10.180.0.1/80
    	add rule ip testing endpoint-5OJB2KTY-ns1/svc1/tcp/p80__10.180.0.1/80 ip saddr 10.180.0.1 jump mark-for-masquerade
    	add rule ip testing endpoint-5OJB2KTY-ns1/svc1/tcp/p80__10.180.0.1/80 meta l4proto tcp dnat to 10.180.0.1:80
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 09:57:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  2. pkg/proxy/endpointslicecache_test.go

    			},
    			expectedMap: spToEndpointMap{
    				makeServicePortName("ns1", "svc1", "port-0", v1.ProtocolTCP): {
    					"10.0.1.1:80": &BaseEndpointInfo{
    						ip:          "10.0.1.1",
    						port:        80,
    						endpoint:    "10.0.1.1:80",
    						isLocal:     false,
    						ready:       true,
    						serving:     true,
    						terminating: false,
    					},
    					"10.0.1.2:80": &BaseEndpointInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. pkg/proxy/topology_test.go

    		endpoints: []Endpoint{
    			&BaseEndpointInfo{endpoint: "10.0.0.0:80", ready: true, isLocal: false},
    			&BaseEndpointInfo{endpoint: "10.0.0.1:80", ready: true, isLocal: true},
    		},
    		clusterEndpoints: nil,
    		localEndpoints:   sets.New[string]("10.0.0.1:80"),
    		allEndpoints:     sets.New[string]("10.0.0.1:80"),
    	}}
    
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/emitter.go

    	colorTan            = "thread_state_unknown"         // 199, 155, 125
    	colorIrisBlue       = "background_memory_dump"       // 0, 180, 180
    	colorMidnightBlue   = "light_memory_dump"            // 0, 0, 180
    	colorDeepMagenta    = "detailed_memory_dump"         // 180, 0, 180
    	colorBlue           = "vsync_highlight_color"        // 0, 0, 255
    	colorGrey           = "generic_work"                 // 125, 125, 125
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:58 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    To check, run `java -version`:
    
    ----
    ❯ java -version
    openjdk version "11.0.18" 2023-01-17
    OpenJDK Runtime Environment Homebrew (build 11.0.18+0)
    OpenJDK 64-Bit Server VM Homebrew (build 11.0.18+0, mixed mode)
    ----
    
    ----
    ❯ java version "1.8.0_151"
    Java(TM) SE Runtime Environment (build 1.8.0_151-b12)
    Java HotSpot(TM) 64-Bit Server VM (build 25.151-b12, mixed mode)
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. src/net/ip_test.go

    		{"[localhost%lo0]:80", "localhost%lo0", "80"},     // Go 1 behavior
    
    		// IP literal
    		{"127.0.0.1:http", "127.0.0.1", "http"},
    		{"127.0.0.1:80", "127.0.0.1", "80"},
    		{"[::1]:http", "::1", "http"},
    		{"[::1]:80", "::1", "80"},
    
    		// IP literal with zone identifier
    		{"[::1%lo0]:http", "::1%lo0", "http"},
    		{"[::1%lo0]:80", "::1%lo0", "80"},
    
    		// Go-specific wildcard for host name
    		{":http", "", "http"}, // Go 1 behavior
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 01:17:29 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    			{Number: 8080, Name: "http-alt-port", Protocol: "http"},
    		},
    		Endpoints: []*networking.WorkloadEntry{
    			{
    				Address: "2.2.2.2",
    				Ports:   map[string]uint32{"http-port": 7080, "http-alt-port": 18080},
    				Labels:  map[string]string{label.SecurityTlsMode.Name: model.IstioMutualTLSModeLabel},
    			},
    			{
    				Address: "3.3.3.3",
    				Ports:   map[string]uint32{"http-port": 1080},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
  8. pkg/proxy/endpointschangetracker.go

    	// (Note that we need to call getLocalEndpointIPs first to squash the data by IP,
    	// because the EndpointsMap is sorted by IP+port, not just IP, and we want to
    	// consider a Service pointing to 10.0.0.1:80 and 10.0.0.1:443 to have 1 endpoint,
    	// not 2.)
    
    	eps := make(map[types.NamespacedName]int)
    	localIPs := em.getLocalReadyEndpointIPs()
    	for nsn, ips := range localIPs {
    		eps[nsn] = len(ips)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  9. pilot/pkg/xds/lds_test.go

    			ConfigNamespace: "none",
    		}, nil, watchAll)
    
    		err := adscon.Save(wd + "/none")
    		if err != nil {
    			t.Fatal(err)
    		}
    
    		// 7071 (inbound), 2001 (service - also as http proxy), 18010 (fortio)
    		if len(adscon.GetHTTPListeners()) != 3 {
    			t.Error("HTTP listeners, expecting 3 got", len(adscon.GetHTTPListeners()), xdstest.MapKeys(adscon.GetHTTPListeners()))
    		}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/util/util_test.go

    								EnvoyInternalAddress: &core.EnvoyInternalAddress{
    									AddressNameSpecifier: &core.EnvoyInternalAddress_ServerListenerName{
    										ServerListenerName: "connect_originate",
    									},
    									EndpointId: "10.0.0.1:80",
    								},
    							},
    						},
    					},
    				},
    			},
    			want: "10.0.0.1",
    		},
    		{
    			name: "internal address(ipv6)",
    			endpoint: &endpoint.LbEndpoint{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top