Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 57 for Listeners (0.48 sec)

  1. tests/integration/pilot/testdata/upgrade/1.7.6-install.yaml.tar

    ha3 kind: EnvoyFilter metadata: name: metadata-exchange-1.6-1-7-6 namespace: istio-system labels: istio.io/rev: 1-7-6 spec: configPatches: - applyTo: HTTP_FILTER match: context: ANY # inbound, outbound, and gateway proxy: proxyVersion: '^1\.6.*' listener: filterChain: filter: name: "envoy.http_connection_manager" patch: operation: INSERT_BEFORE value: name: istio.metadata_exchange typed_config: "@type": type.googleapis.com/udpa.type.v1.TypedStruct type_url: type.googleapis.com/envoy.extensions.f...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 60K bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/upgrade/1.9.5-install.yaml.tar

    namespace: istio-system labels: istio.io/rev: 1-9-5 install.operator.istio.io/owning-resource: unknown operator.istio.io/component: "Pilot" spec: configPatches: - applyTo: HTTP_FILTER match: context: SIDECAR_INBOUND proxy: proxyVersion: '^1\.8.*' listener: filterChain: filter: name: "envoy.filters.network.http_connection_manager" patch: operation: INSERT_BEFORE value: name: istio.metadata_exchange typed_config: "@type": type.googleapis.com/udpa.type.v1.TypedStruct type_url: type.googleapis.com/en...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 80K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                withProblem("Script 'script.gradle': line 10: registration of listener on 'Gradle.buildFinished' is unsupported")
                withProblem("Script 'script.gradle': line 13: registration of listener on 'Gradle.buildFinished' is unsupported")
                withProblem("Script 'script.gradle': line 4: registration of listener on 'Gradle.buildFinished' is unsupported")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  4. tests/integration/pilot/testdata/upgrade/1.10.0-install.yaml.tar

    namespace: istio-system labels: istio.io/rev: 1-10-0 install.operator.istio.io/owning-resource: unknown operator.istio.io/component: "Pilot" spec: configPatches: - applyTo: HTTP_FILTER match: context: SIDECAR_INBOUND proxy: proxyVersion: '^1\.10.*' listener: filterChain: filter: name: "envoy.filters.network.http_connection_manager" patch: operation: INSERT_BEFORE value: name: istio.metadata_exchange typed_config: "@type": type.googleapis.com/udpa.type.v1.TypedStruct type_url: type.googleapis.com/en...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 01 19:57:24 UTC 2021
    - 80K bytes
    - Viewed (0)
  5. tests/integration/pilot/testdata/upgrade/1.6.11-install.yaml.tar

    3 kind: EnvoyFilter metadata: name: metadata-exchange-1.6-1-6-11 namespace: istio-system labels: istio.io/rev: 1-6-11 spec: configPatches: - applyTo: HTTP_FILTER match: context: ANY # inbound, outbound, and gateway proxy: proxyVersion: '^1\.6.*' listener: filterChain: filter: name: "envoy.http_connection_manager" patch: operation: INSERT_BEFORE value: name: istio.metadata_exchange typed_config: "@type": type.googleapis.com/udpa.type.v1.TypedStruct type_url: type.googleapis.com/envoy.extensions.f...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 50K bytes
    - Viewed (0)
  6. src/crypto/tls/tls_test.go

    	}
    
    	timeout := 100 * time.Microsecond
    	for !t.Failed() {
    		acceptc := make(chan net.Conn)
    		listener := newLocalListener(t)
    		go func() {
    			for {
    				conn, err := listener.Accept()
    				if err != nil {
    					close(acceptc)
    					return
    				}
    				acceptc <- conn
    			}
    		}()
    
    		addr := listener.Addr().String()
    		dialer := &net.Dialer{
    			Timeout: timeout,
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/httproute_test.go

    				},
    				{
    					Port: &networking.SidecarPort{
    						// Unix domain socket listener
    						Number:   0,
    						Protocol: "HTTP",
    						Name:     "something",
    					},
    					Bind:  "unix://foo/bar/baz",
    					Hosts: []string{"*/bookinfo.com"},
    				},
    				{
    					Port: &networking.SidecarPort{
    						// Unix domain socket listener
    						Number:   0,
    						Protocol: "HTTP",
    						Name:     "something",
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                                .source(modelSource)
                                .projectBuild(true)
                                .locationTracking(true)
                                .listener(listener)
                                .build();
    
                        if (pomFile != null) {
                            project.setRootDirectory(rootLocator.findRoot(pomFile.getParent()));
                        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        peer: MockHttp2Peer,
        pushObserver: PushObserver = IGNORE,
        listener: Http2Connection.Listener = Http2Connection.Listener.REFUSE_INCOMING_STREAMS,
      ): Http2Connection {
        val connection =
          Http2Connection.Builder(true, TaskRunner.INSTANCE)
            .socket(peer.openSocket())
            .pushObserver(pushObserver)
            .listener(listener)
            .build()
        connection.start(sendConnectionPreface = false)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

        }
    
    
        @Override
        public void addRuleBasedPluginListener(RuleBasedPluginListener listener) {
            if (preparedForRuleBasedPlugins) {
                listener.prepareForRuleBasedPlugins(this);
            } else {
                ruleBasedPluginListenerBroadcast.add(listener);
            }
        }
    
        @Override
        public void prepareForRuleBasedPlugins() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
Back to top