Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 620 for Listeners (0.19 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/internal/LifecycleModuleBuilder.java

                List<ProjectExecutionListener> listeners,
                ConsumerPomArtifactTransformer consumerPomArtifactTransformer) {
            this.mojoExecutor = mojoExecutor;
            this.builderCommon = builderCommon;
            this.eventCatapult = eventCatapult;
            this.projectExecutionListener = new CompoundProjectExecutionListener(listeners);
            this.consumerPomArtifactTransformer = consumerPomArtifactTransformer;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:09 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  2. pkg/envoy/agent.go

    			continue
    		}
    		// downstream_cx_active is accounted under "http." and "listener." for http listeners.
    		// Only consider listener stats. Listener stats also will have per worker stats, we can
    		// ignore them.
    		if !strings.HasPrefix(parts[0], "listener.") || strings.Contains(parts[0], "worker_") {
    			continue
    		}
    		// If the stat is for a known Istio listener skip it.
    		if a.knownIstioListeners.Contains(parts[0]) {
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster.go

    	// or not. If the node has a sidecarscope with ingress listeners, we only return clusters corresponding
    	// to those listeners i.e. clusters made out of the defaultEndpoint field.
    	// If the node has no sidecarScope and has interception mode set to NONE, then we should skip the inbound
    	// clusters, because there would be no corresponding inbound listeners
    	sidecarScope := proxy.SidecarScope
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/FileChangeListeners.java

    /**
     * Allows the registration of {@link FileChangeListener}s.
     *
     * We can't use listener manager directly, since the listeners will be created in
     * child scopes of the user home scope.
     */
    @ServiceScope(Scope.UserHome.class)
    public interface FileChangeListeners {
        /**
         * Registers the listener with the build, the listener can be unregistered with {@link #removeListener(FileChangeListener)}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. 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)
  6. pilot/pkg/features/xds.go

    	// UseRemoteAddress sets useRemoteAddress to true for sidecar outbound listeners so that it picks up the localhost
    	// address of the sender, which is an internal address, so that trusted headers are not sanitized.
    	UseRemoteAddress = env.Register(
    		"PILOT_SIDECAR_USE_REMOTE_ADDRESS",
    		false,
    		"UseRemoteAddress sets useRemoteAddress to true for sidecar outbound listeners.",
    	).Get()
    
    	EnableEDSForHeadless = env.Register(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 24 06:18:36 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. 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)
  8. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationValve.java

     * but we need to allow, external (i.e. non ListenerManager), listeners per build.
     * <p>
     * Furthermore, the actual lifecycle is not something that we currently model with the service registries.
     * The notification listener is effectively of cross build tree scope, which doesn't exist.
     * This is because GradleBuild uses a discrete tree (which is intended to change later).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. pkg/adsc/adsc.go

    		switch msg.TypeUrl {
    		case v3.ListenerType:
    			listeners := make([]*listener.Listener, 0, len(msg.Resources))
    			for _, rsc := range msg.Resources {
    				valBytes := rsc.Value
    				ll := &listener.Listener{}
    				_ = proto.Unmarshal(valBytes, ll)
    				listeners = append(listeners, ll)
    			}
    			a.handleLDS(listeners)
    		case v3.ClusterType:
    			clusters := make([]*cluster.Cluster, 0, len(msg.Resources))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 05 22:18:49 UTC 2024
    - 35K bytes
    - Viewed (0)
  10. 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)
Back to top