Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for listener2 (0.57 sec)

  1. pilot/pkg/networking/core/route/route.go

    // once for all sidecars in the cluster to compute all RDS for inside the mesh and arrange
    // it by listener port. However to properly use such an optimization, we need to have an
    // eventing subsystem to invalidate the computed routes if any service changes/virtual Services change.
    type VirtualHostWrapper struct {
    	// Port is the listener port for outbound sidecar (e.g. service port)
    	Port int
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

     * be registered as a listener of that type. Alternatively, service implementations can be annotated with {@link org.gradle.internal.service.scopes.ListenerService} to indicate that the should be
     * registered as a listener.</p>
     */
    public class DefaultServiceRegistry implements ServiceRegistry, Closeable, ContainsServices, ServiceRegistrationProvider {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

                    results.getVisitedGraph().getResolutionFailure().ifPresent(context::failed);
                    // When dependency resolution has failed, we don't want the build operation listeners to fail as well
                    // because:
                    // 1. the `failed` method will have been called with the user facing error
                    // 2. such an error may still lead to a valid dependency graph
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  4. src/net/http/client_test.go

    		}
    	})).ts
    	jar := new(RecordingJar)
    	c := ts.Client()
    	c.Jar = jar
    	c.Transport.(*Transport).Dial = func(_ string, _ string) (net.Conn, error) {
    		return net.Dial("tcp", ts.Listener.Addr().String())
    	}
    	_, err := c.Get("http://firsthost.fake/")
    	if err != nil {
    		t.Fatal(err)
    	}
    	_, err = c.Get("http://firsthost.fake/nosetcookie")
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. src/net/http/fs_test.go

    func TestFileServerZeroByte(t *testing.T) { run(t, testFileServerZeroByte) }
    func testFileServerZeroByte(t *testing.T, mode testMode) {
    	ts := newClientServerTest(t, mode, FileServer(Dir("."))).ts
    
    	c, err := net.Dial("tcp", ts.Listener.Addr().String())
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer c.Close()
    	_, err = fmt.Fprintf(c, "GET /..\x00 HTTP/1.0\r\n\r\n")
    	if err != nil {
    		t.Fatal(err)
    	}
    	var got bytes.Buffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	t.Helper()
    
    	fromSame := k8sv1.NamespacesFromSame
    	gatewaySpec := k8sbeta.GatewaySpec{
    		GatewayClassName: constants.WaypointGatewayClassName,
    		Listeners: []k8sbeta.Listener{
    			{
    				Name:     "mesh",
    				Port:     15008,
    				Protocol: "HBONE",
    				AllowedRoutes: &k8sbeta.AllowedRoutes{
    					Namespaces: &k8sbeta.RouteNamespaces{
    						From: &fromSame,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Use link:{javadocPath}/org/gradle/api/reporting/Report.html#getOutputLocation--[`Report#getOutputLocation().set(...)`] instead.
    
    [[task_execution_events]]
    ==== Task execution listeners and events
    
    The Gradle configuration cache does not support listeners and events that have direct access to `Task` and `Project` instances, which allows Gradle to execute tasks in parallel and to store the minimal amount of data in the configuration cache.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            then:
            ids.size() == 1
            ids.first() == null
            buildOperationRunner.log.all(ExecuteDomainObjectCollectionCallbackBuildOperationType).empty
        }
    
        def "handles nested listener registration"() {
            given:
            containerSupportsBuildOperations()
    
            when:
            UserCodeApplicationId id1 = null
            UserCodeApplicationId id2 = null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            } else if (request.isInteractiveMode() && !commandLine.hasOption(CLIManager.LOG_FILE)) {
                //
                // If we're logging to a file then we don't want the console transfer listener as it will spew
                // download progress all over the place
                //
                return getConsoleTransferListener(verbose);
            } else {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceregistry_test.go

    			t.Fatalf("xds push reason does not contain %v: %v", model.HeadlessEndpointUpdate, ev)
    		}
    
    		// pure HTTP headless services should not need a full push since they do not
    		// require a Listener based on IP: https://github.com/istio/istio/issues/48207
    		instances := []EndpointResponse{{
    			Address: pod.Status.PodIP,
    			Port:    80,
    		}}
    		expectServiceEndpoints(t, fx, expectedSvc, 80, instances)
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
Back to top