Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for byProxy (0.09 sec)

  1. pilot/pkg/autoregistration/connections.go

    type adsConnections struct {
    	sync.Mutex
    
    	// keyed by proxy id, then connection id
    	byProxy map[proxyKey]map[string]connection
    }
    
    func newAdsConnections() *adsConnections {
    	return &adsConnections{byProxy: map[proxyKey]map[string]connection{}}
    }
    
    func (m *adsConnections) ConnectionsForGroup(wg types.NamespacedName) []connection {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Sep 19 20:41:55 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/RouteFailureTest.kt

      @ParameterizedTest
      @ValueSource(booleans = [false, true])
      fun proxyMoveTest(cleanShutdown: Boolean) {
        // Define a single Proxy at myproxy:8008 that will artificially move during the test
        val proxySelector = RecordingProxySelector()
        val socketAddress = InetSocketAddress.createUnresolved("myproxy", 8008)
        proxySelector.proxies.add(Proxy(Proxy.Type.HTTP, socketAddress))
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue May 14 17:48:07 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. operator/cmd/mesh/manifest-generate_test.go

    }
    
    func TestManifestGenerateFlagsSetValues(t *testing.T) {
    	g := NewWithT(t)
    	m, _, err := generateManifest("default", "-s values.global.proxy.image=myproxy -s values.global.proxy.includeIPRanges=172.30.0.0/16,172.21.0.0/16", liveCharts,
    		[]string{"templates/deployment.yaml", "templates/istiod-injector-configmap.yaml"})
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top