Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 569 for Listeners (0.18 sec)

  1. pkg/controlplane/apiserver/server.go

    		// TODO: See if we can pass ctx to the current method
    		ctx := wait.ContextForChannel(hookContext.StopCh)
    
    		// prime values and start listeners
    		if s.ClusterAuthenticationInfo.ClientCA != nil {
    			s.ClusterAuthenticationInfo.ClientCA.AddListener(controller)
    			if controller, ok := s.ClusterAuthenticationInfo.ClientCA.(dynamiccertificates.ControllerRunner); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 19:24:41 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/services/internal/DefaultBuildServicesRegistry.java

        private final Instantiator paramsInstantiator;
        private final Instantiator specInstantiator;
        private final BuildServiceProvider.Listener listener;
    
        public DefaultBuildServicesRegistry(
            BuildIdentifier buildIdentifier,
            DomainObjectCollectionFactory collectionFactory,
            InstantiatorFactory instantiatorFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:45 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    * Providing user-specific information (e.g., authentication credentials)
    * Defining machine-specific details (e.g., JDK locations)
    * Registering build listeners (e.g., external tools that wish to listen to Gradle events might find this helpful)
    * Registering loggers (e.g., customize how Gradle logs the events that it generates)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/MoreExecutors.java

       *   <li>When a {@code ListenableFuture} listener is registered to run under {@code
       *       directExecutor}, the listener can execute in any of three possible threads:
       *       <ol>
       *         <li>When a thread attaches a listener to a {@code ListenableFuture} that's already
       *             complete, the listener runs immediately in that thread.
       *         <li>When a thread attaches a listener to a {@code ListenableFuture} that's
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

            });
        }
    
        /**
         * <p>Adds a listener to this build instance. The listener is notified of events which occur during the execution of the build.
         * See {@link org.gradle.api.invocation.Gradle#addListener(Object)} for supported listener types.</p>
         *
         * @param listener The listener to add. Has no effect if the listener has already been added.
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/collections/AbstractIterationOrderRetainingElementSource.java

            if (subscriptionVerifier.isSubscribed(element.getType())) {
                element.realize();
    
                // Ugly backwards-compatibility hack. Previous implementations would notify listeners without
                // actually telling the ElementSource that the element was realized.
                // We can avoid this in the future if we make ChangingValue more widespread -- particularly
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 20:04:06 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        /**
         * Register the given listener which will receive all events.
         *
         * @param listener the listener to register
         * @throws NullPointerException if {@code listener} is null
         */
        void registerListener(@Nonnull Listener listener);
    
        /**
         * Unregisters a previously registered listener.
         *
         * @param listener the listener to unregister
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationIntegrationTest.groovy

                it.projectPath == ":" && it.buildPath != ":"
            }
            notifications.started(ExecuteTaskBuildOperationType.Details) {
                it.taskPath == ":o"
            }
        }
    
        def "listeners are deregistered after build"() {
            when:
            executer.requireDaemon().requireIsolatedDaemons()
            addSettingsListener()
            buildFile << "task t"
            succeeds("t")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. src/net/http/server.go

    func (s *Server) trackListener(ln *net.Listener, add bool) bool {
    	s.mu.Lock()
    	defer s.mu.Unlock()
    	if s.listeners == nil {
    		s.listeners = make(map[*net.Listener]struct{})
    	}
    	if add {
    		if s.shuttingDown() {
    			return false
    		}
    		s.listeners[ln] = struct{}{}
    		s.listenerGroup.Add(1)
    	} else {
    		delete(s.listeners, ln)
    		s.listenerGroup.Done()
    	}
    	return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

        }
    
        @Issue("gradle/gradle#1567")
        def "A copy of a configuration that has no resolution listeners also has no resolution listeners"() {
            given:
            def config = conf("conf")
    
            expect:
            config.dependencyResolutionListeners.size() == 1 // the listener that forwards to listener manager
    
            when:
            def copy = config.copy()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
Back to top