Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 656 for Listeners (0.76 sec)

  1. tests/integration/telemetry/policy/helper_test.go

    	// Test cases:
    	// 1. http case:
    	//    client -------> Hits listener 0.0.0.0_80 cluster
    	//    Metric is istio_requests_total i.e. HTTP
    	//
    	// 2. https case:
    	//    client ----> Hits no listener -> 0.0.0.0_150001 -> ALLOW_ANY/REGISTRY_ONLY
    	//    Metric is istio_tcp_connections_closed_total i.e. TCP
    	//
    	// 3. https conflict case:
    	//    client ----> Hits listener 0.0.0.0_9443
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/AbstractTestTask.java

         *
         * @param listener The listener to remove.
         */
        public void removeTestListener(TestListener listener) {
            testListenerSubscriptions.removeListener(listener);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top