Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 73 for 15008 (0.04 sec)

  1. pilot/pkg/xds/testdata/none_lds_tcp.json

        "virtual": {
          "name": "virtual",
          "address": {
            "Address": {
              "SocketAddress": {
                "address": "0.0.0.0",
                "PortSpecifier": {
                  "PortValue": 15001
                }
              }
            }
          },
          "filter_chains": [
            {
              "filters": [
                {
                  "name": "envoy.tcp_proxy",
                  "ConfigType": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 22.4K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

        Stopwatch stopwatch = Stopwatch.createStarted();
        Condition condition = TestCondition.createAndSignalAfter(500, MILLISECONDS);
    
        boolean signaledBeforeTimeout = awaitUninterruptibly(condition, 1500, MILLISECONDS);
    
        assertTrue(signaledBeforeTimeout);
        assertTimeNotPassed(stopwatch, LONG_DELAY_MS);
        assertNotInterrupted();
      }
    
      public void testConditionAwaitInterruptedTimeoutExceeded() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 09 22:57:07 UTC 2022
    - 30.9K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/sidecar-injector-configmap-absolute-override.yaml

            image: "{{ .Values.global.hub }}/{{ .Values.global.proxy_init.image }}:{{ .Values.global.tag }}"
          {{- end }}
            command:
            - istio-iptables
            - "-p"
            - 15001
            - "-z"
            - "15006"
            - "-u"
            - 1337
            - "-m"
            - "{{ annotation .ObjectMeta `sidecar.istio.io/interceptionMode` .ProxyConfig.InterceptionMode }}"
            - "-i"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 21 03:10:21 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. pilot/pkg/simulation/traffic.go

    var (
    	// CallModeGateway simulate no iptables
    	CallModeGateway CallMode = "gateway"
    	// CallModeOutbound simulate iptables redirect to 15001
    	CallModeOutbound CallMode = "outbound"
    	// CallModeInbound simulate iptables redirect to 15006
    	CallModeInbound CallMode = "inbound"
    )
    
    type Call struct {
    	Address string
    	Port    int
    	Path    string
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. pilot/pkg/xds/xds_test.go

    			ID:          "app3.testns",
    		})
    		structpath.ForProto(xdstest.ToDiscoveryResponse(s.Listeners(proxy))).
    			Exists("{.resources[?(@.address.socketAddress.portValue==15001)]}").
    			Select("{.resources[?(@.address.socketAddress.portValue==15001)]}").
    			Equals("virtualOutbound", "{.name}").
    			Equals("0.0.0.0", "{.address.socketAddress.address}").
    			Equals(wellknown.TCPProxy, "{.filterChains[1].filters[0].name}").
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultVisualStudioLocatorTest.groovy

            1 * windowsRegistryLocator.getVisualStudioInstalls() >> [vs2017Install(dir3, "15.0")]
            0 * systemPathLocator.getVisualStudioInstalls()
    
            when:
            def result = visualStudioLocator.locateComponent(null)
    
            then:
            result.available
            result.component.name == "Visual Studio 15.0.0"
            result.component.version == VersionNumber.parse("15.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 25.1K bytes
    - Viewed (0)
  7. istioctl/pkg/ztunnelconfig/ztunnelconfig.go

    	"istio.io/istio/pkg/kube"
    	"istio.io/istio/pkg/log"
    	"istio.io/istio/pkg/slices"
    )
    
    const (
    	jsonOutput    = "json"
    	yamlOutput    = "yaml"
    	summaryOutput = "short"
    
    	defaultProxyAdminPort = 15000
    )
    
    func ZtunnelConfig(ctx cli.Context) *cobra.Command {
    	configCmd := &cobra.Command{
    		Use:   "ztunnel-config",
    		Short: "Update or retrieve current Ztunnel configuration.",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 22K bytes
    - Viewed (0)
  8. pkg/config/validation/agent/validation_test.go

    		ProxyAdminPort:         15000,
    		DrainDuration:          durationpb.New(45 * time.Second),
    		ClusterName:            &meshconfig.ProxyConfig_ServiceCluster{ServiceCluster: "istio-proxy"},
    		StatsdUdpAddress:       "istio-statsd-prom-bridge.istio-system:9125",
    		EnvoyMetricsService:    &meshconfig.RemoteService{Address: "metrics-service.istio-system:15000"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  9. cni/pkg/plugin/sidecar_redirect.go

    	"istio.io/istio/tools/istio-iptables/pkg/cmd"
    )
    
    const (
    	redirectModeREDIRECT         = "REDIRECT"
    	redirectModeTPROXY           = "TPROXY"
    	defaultProxyStatusPort       = "15020"
    	defaultRedirectToPort        = "15001"
    	defaultNoRedirectUID         = "1337"
    	defaultNoRedirectGID         = "1337"
    	defaultRedirectMode          = redirectModeREDIRECT
    	defaultRedirectIPCidr        = "*"
    	defaultRedirectExcludeIPCidr = ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiIntegrationTest.groovy

            then:
            model != null
        }
    
        @Issue("GRADLE-2419")
        def "tooling API does not hold JVM open"() {
            given:
            def startTimeoutMs = 90000
            def stateChangeTimeoutMs = 15000
            def stopTimeoutMs = 10000
            def retryIntervalMs = 500
    
            def gradleUserHomeDirPath = executer.gradleUserHomeDir.absolutePath
            def gradleHomeDirPath = otherVersion.gradleHomeDir.absolutePath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top