Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 598 for notified (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/signal.go

    		os.Exit(1) // second signal. Exit directly.
    	}()
    
    	return ctx
    }
    
    // RequestShutdown emulates a received event that is considered as shutdown signal (SIGTERM/SIGINT)
    // This returns whether a handler was notified
    func RequestShutdown() bool {
    	if shutdownHandler != nil {
    		select {
    		case shutdownHandler <- shutdownSignals[0]:
    			return true
    		default:
    		}
    	}
    
    	return false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 06 14:30:27 UTC 2020
    - 2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/ChangingValueDependencyResolutionListener.java

    import org.gradle.api.internal.artifacts.configurations.dynamicversion.Expiry;
    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    
    import java.util.Set;
    
    /**
     * Notified of the use of changing values during dependency resolution, so this can be noted in the configuration cache inputs
     */
    @EventScope(Scope.Build.class)
    public interface ChangingValueDependencyResolutionListener {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/ProjectEvaluationListener.java

     */
    package org.gradle.api;
    
    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    
    /**
     * <p>An {@code ProjectEvaluationListener} is notified when a project is evaluated. You add can add an {@code
     * ProjectEvaluationListener} to a {@link org.gradle.api.invocation.Gradle} using {@link
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/execution/TaskExecutionGraphListener.java

     */
    
    package org.gradle.api.execution;
    
    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    
    /**
     * <p>A {@code TaskExecutionGraphListener} is notified when the {@link TaskExecutionGraph} has been populated. You can
     * use this interface in your build file to perform some action based on the contents of the graph, before any tasks are
     * actually executed.</p>
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/execution/TaskExecutionListener.java

    import org.gradle.internal.DeprecatedInGradleScope;
    import org.gradle.internal.service.scopes.EventScope;
    import org.gradle.internal.service.scopes.Scope;
    
    /**
     * <p>A {@code TaskExecutionListener} is notified of the execution of the tasks in a build.</p>
     *
     * <p>You can add a {@code TaskExecutionListener} to a build using {@link org.gradle.api.execution.TaskExecutionGraph#addTaskExecutionListener}
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. src/sync/cond_test.go

    		// holding when we synchronized.
    		//
    		// Start two goroutines that will race: one will broadcast on
    		// the cond var, the other will wait on it.
    		//
    		// The new waiter may or may not get notified, but the first one
    		// has to be notified.
    		done := false
    		go func() {
    			cond.Broadcast()
    		}()
    
    		go func() {
    			m.Lock()
    			for !done {
    				cond.Wait()
    			}
    			m.Unlock()
    		}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 22 18:52:42 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSourceProviderFactory.java

            Class<? extends ValueSource<T, P>> valueSourceType,
            @Nullable Class<P> parametersType,
            @Nullable P parameters
        );
    
        /**
         * The listener that is notified when the value of the {@code ValueSource} is computed. There is no ordering guarantees with the
         * {@link ValueListener#valueObtained(ValueListener.ObtainedValue, ValueSource)}.
         */
        @EventScope(Scope.Build.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/initialization/DefaultBuildCancellationTokenSpec.groovy

            and:
            1 * callback1.run() >> { throw ex1 }
            1 * callback2.run() >> { throw ex2 }
            1 * callback3.run()
        }
    
        def 'removed callback is not notified'() {
            def token = new DefaultBuildCancellationToken()
    
            def callback = Mock(Runnable)
            token.addCallback(callback)
            token.removeCallback(callback)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 23 09:27:48 UTC 2015
    - 3.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/ProgressListener.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.events;
    
    /**
     * A listener which is notified when operations that are executed as part of running a build make progress.
     *
     * @see org.gradle.tooling.LongRunningOperation#addProgressListener(ProgressListener)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DirectoryFileTree.java

         * Process the specified file or directory.  If it is a directory, then its contents
         * (but not the directory itself) will be checked with {@link #isAllowed(FileTreeElement, Spec)} and notified to
         * the listener.  If it is a file, the file will be checked and notified.
         */
        public void visitFrom(FileVisitor visitor, File fileOrDirectory, RelativePath path, AtomicBoolean stopFlag) {
            Spec<FileTreeElement> spec = patternSet.getAsSpec();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 21:33:45 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top