Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 571 for listener2 (0.16 sec)

  1. pilot/pkg/config/kube/gateway/testdata/waypoint.status.yaml.golden

          not found'
        reason: AddressNotUsable
        status: "False"
        type: Programmed
      listeners:
      - attachedRoutes: 0
        conditions:
        - lastTransitionTime: fake
          message: Expected a single listener on port 15008 with protocol "HBONE"
          reason: UnsupportedProtocol
          status: "False"
          type: Accepted
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 21:30:40 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TaskProgressCrossVersionSpec.groovy

            }
    
            then: "task progress events must be forwarded to the attached listeners"
            !events.tasks.empty
            events.operations == events.tasks
        }
    
        def "receive current task progress event even if one of multiple task listeners throws an exception"() {
            given:
            goodCode()
    
            when: "launching a build"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/fake.go

    	pc := f.PushContext()
    	p.SetSidecarScope(pc)
    	p.SetServiceTargets(f.env.ServiceDiscovery)
    	p.SetGatewaysForProxy(pc)
    	p.DiscoverIPMode()
    	return p
    }
    
    func (f *ConfigGenTest) Listeners(p *model.Proxy) []*listener.Listener {
    	return f.ConfigGen.BuildListeners(p, f.PushContext())
    }
    
    func (f *ConfigGenTest) Clusters(p *model.Proxy) []*cluster.Cluster {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationBridgeTest.groovy

            then:
            noExceptionThrown()
        }
    
        def "cannot register when valve is closed"() {
            when:
            register(listener)
    
            then:
            thrown IllegalStateException
        }
    
        def "passes recorded events to listeners registering"() {
            def d1 = d(1, null, 1)
            def bridge = getOrCreateBridge()
            bridge.valve.start()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultValueSourceProviderFactoryTest.groovy

        def "failed value source notifies before-after listeners"() {
            given:
            ValueSourceProviderFactory.ComputationListener listener = Mock()
            valueSourceProviderFactory.addComputationListener(listener)
            def provider = createProviderOf(vsClass) {}
    
            when:
            provider.get()
    
            then:
            thrown(exceptionClass)
            1 * listener.beforeValueObtained()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. pilot/pkg/networking/grpcgen/lds.go

    		SuppressDebugHeaders: false, // No need to set this to true, gRPC doesn't respect it anyways
    	}))
    
    	out := &listener.FilterChain{
    		Name:             "inbound-" + nameSuffix,
    		FilterChainMatch: nil,
    		Filters: []*listener.Filter{{
    			Name: "inbound-hcm" + nameSuffix,
    			ConfigType: &listener.Filter_TypedConfig{
    				TypedConfig: protoconv.MessageToAny(&hcm.HttpConnectionManager{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. pkg/ctrlz/ctrlz.go

    	}
    
    	// Canonicalize the address and resolve a dynamic port if necessary
    	listener, err := net.Listen("tcp", fmt.Sprintf("%s:%d", addr, o.Port))
    	if err != nil {
    		log.Errorf("Unable to start ControlZ: %v", err)
    		return nil, err
    	}
    
    	s := &Server{
    		listener: listener,
    		httpServer: http.Server{
    			Addr:           listener.Addr().(*net.TCPAddr).String(),
    			ReadTimeout:    10 * time.Second,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/EventFiringTaskExecuterTest.groovy

        def executionContext = Mock(TaskExecutionContext)
    
        def executer = new EventFiringTaskExecuter(buildOperationRunner, taskExecutionListener, taskListener, delegate)
    
        def "notifies task listeners"() {
            when:
            executer.execute(task, state, executionContext)
    
            then:
            _ * task.getIdentityPath() >> Path.path(":a")
    
            1 * task.getTaskIdentity() >> taskIdentity
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

            testNg.setGroups(CollectionUtils.join(",", spec.getIncludeGroups()));
            testNg.setExcludedGroups(CollectionUtils.join(",", spec.getExcludeGroups()));
    
            // Adding custom test listeners before Gradle's listeners.
            // This way, custom listeners are more powerful and, for example, they can change test status.
            for (String listenerClass : spec.getListeners()) {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/configuration/project/LifecycleProjectEvaluator.java

                Action<ProjectEvaluationListener> fireAction = new Action<ProjectEvaluationListener>() {
                    @Override
                    public void execute(ProjectEvaluationListener listener) {
                        listener.afterEvaluate(project, state);
                    }
                };
    
                do {
                    try {
                        nextBatch = project.stepEvaluationListener(nextBatch, fireAction);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top