Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,252 for Listeners (0.15 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGConsoleLoggingIntegrationTest.groovy

            executer.withStackTraceChecksDisabled()
            fails "test"
    
            then:
            outputContains("org.gradle.api.GradleException: Could not add a test listener with class 'com.listeners.DoesNotExist'")
            outputContains("java.lang.ClassNotFoundException: com.listeners.DoesNotExist")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/EventScope.java

    import java.lang.annotation.Target;
    
    /**
     * Attached to a listener interface to indicate which scope its events are generated in.
     *
     * <p>Events generated in a particular scope are visible to listeners in the same scope and ancestor scopes.
     * Events are not visible to listeners in descendent scopes.
     *
     * <p>This annotation is used primarily to indicate to developers the scopes where this listener are available. There is also
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/waypoint.yaml

    kind: Gateway
    metadata:
      name: namespace
      namespace: ns
    spec:
      gatewayClassName: istio-waypoint
      listeners:
      - name: mesh
        port: 15008
        protocol: HBONE
    ---
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: invalid
      namespace: ns
    spec:
      gatewayClassName: istio-waypoint
      listeners:
      - name: mesh
        port: 1234
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 21 19:34:29 UTC 2023
    - 418 bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/testng/TestNGOptionsTest.groovy

                includeGroups == source.includeGroups
                excludeGroups == source.excludeGroups
                configFailurePolicy == source.configFailurePolicy
                listeners == source.listeners
                parallel == source.parallel
                threadCount == source.threadCount
                suiteThreadPoolSize.get() == source.suiteThreadPoolSize.get()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/JdkFutureAdapters.java

          return delegate;
        }
    
        @Override
        public void addListener(Runnable listener, Executor exec) {
          executionList.add(listener, exec);
    
          // When a listener is first added, we run a task that will wait for the delegate to finish,
          // and when it is done will run the listeners.
          if (hasListeners.compareAndSet(false, true)) {
            if (delegate.isDone()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  6. releasenotes/notes/destination-rule-tunneling.yaml

    area: traffic-management
    releaseNotes:
    - |
      **Added** support for tunneling outbound traffic via external HTTP forward proxies using HTTP CONNECT or POST methods.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 15 23:31:52 UTC 2022
    - 313 bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/ProgressCrossVersionSpec.groovy

                ProjectConnection connection ->
                    connection.model(BuildInvocations).forTasks('assemble').addProgressListener(events).get()
            }
    
            then: "progress events must be forwarded to the attached listeners"
            events.assertIsABuild()
        }
    
        def "receive progress events when launching a build"() {
            given:
            goodCode()
    
            when: "launching a build"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r41/BuildListenerCrossVersionSpec.groovy

                }
            """
            file("gradle.properties") << """
                org.gradle.configureondemand = true
            """
            output = new TestOutputStream()
        }
    
        def "build listeners are called when using configure-on-demand model builders"() {
            when:
            withConnection {
                ProjectConnection connection ->
                    connection.model(GradleProject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationListener.java

    import org.gradle.internal.service.scopes.Scope.Global;
    
    /**
     * A listener that is notified as build operations are executed.
     *
     * Listeners must be registered via {@link BuildOperationListenerManager}, not ListenerManager.
     *
     * Unlike ListenerManager bound listeners, build operation listener signalling is not synchronized.
     * Implementations must take care to be threadsafe.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ToolingApiBuildEventListenerFactory.java

            ImmutableList.Builder<Object> listeners = ImmutableList.builder();
    
            if (subscriptions.isRequested(OperationType.TEST) && subscriptions.isRequested(OperationType.TEST_OUTPUT)) {
                listeners.add(new ClientForwardingTestOutputOperationListener(progressEventConsumer, idFactory));
            }
    
            if (subscriptions.isRequested(OperationType.BUILD_PHASE)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top