Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for InternalListener (0.64 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/InternalListener.java

     * while they do have control of user code listeners.
     * <p>
     * There are some reusable implementations of this, such as {@link org.gradle.api.internal.InternalAction}.
     */
    public interface InternalListener {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/MutableActionSet.java

     *
     * This type is not thread-safe.
     *
     * Consider using {@link org.gradle.internal.ImmutableActionSet} instead of this.
     *
     * Implements {@link InternalListener} as components themselves should be decorated if appropriate.
     */
    public class MutableActionSet<T> implements Action<T>, InternalListener {
        private ImmutableActionSet<T> actions = ImmutableActionSet.empty();
    
        public void add(Action<? super T> action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/api/internal/InternalAction.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal;
    
    import org.gradle.api.Action;
    import org.gradle.internal.InternalListener;
    
    public interface InternalAction<T> extends Action<T>, InternalListener {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 802 bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/configuration/internal/ListenerBuildOperationDecorator.java

    import groovy.lang.Closure;
    import org.gradle.BuildListener;
    import org.gradle.api.Action;
    import org.gradle.api.ProjectEvaluationListener;
    import org.gradle.api.execution.TaskExecutionGraphListener;
    import org.gradle.internal.InternalListener;
    import org.gradle.internal.code.UserCodeApplicationContext;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/DefaultCollectionCallbackActionDecorator.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal;
    
    import org.gradle.api.Action;
    import org.gradle.api.specs.Spec;
    import org.gradle.internal.InternalListener;
    import org.gradle.internal.code.UserCodeApplicationContext;
    import org.gradle.internal.code.UserCodeApplicationId;
    import org.gradle.internal.operations.BuildOperationContext;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/configuration/internal/DefaultListenerBuildOperationDecorator.java

    import org.gradle.BuildListener;
    import org.gradle.api.Action;
    import org.gradle.api.ProjectEvaluationListener;
    import org.gradle.api.execution.TaskExecutionGraphListener;
    import org.gradle.internal.InternalListener;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.code.UserCodeApplicationContext;
    import org.gradle.internal.code.UserCodeApplicationId;
    import org.gradle.internal.operations.BuildOperationContext;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/internal/InternalBuildListener.java

     * limitations under the License.
     */
    
    package org.gradle.internal;
    
    import org.gradle.BuildListener;
    
    public interface InternalBuildListener extends BuildListener, InternalListener {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 23 11:16:56 UTC 2020
    - 764 bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/configuration/internal/DefaultListenerBuildOperationDecoratorTest.groovy

    class DefaultListenerBuildOperationDecoratorTest extends Specification {
    
        private static interface InternalProjectEvaluationListener extends ProjectEvaluationListener, InternalListener {}
    
        private static interface InternalTaskExecutionGraphListener extends TaskExecutionGraphListener, InternalListener {}
    
        private static interface Other {
            void completed()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 14:54:57 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_waypoint.go

    func buildInternalUpstreamCluster(name string, internalListener string) *cluster.Cluster {
    	return &cluster.Cluster{
    		Name:                 name,
    		ClusterDiscoveryType: &cluster.Cluster_Type{Type: cluster.Cluster_STATIC},
    		LoadAssignment: &endpoint.ClusterLoadAssignment{
    			ClusterName: name,
    			Endpoints:   util.BuildInternalEndpoint(internalListener, nil),
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/ImmutableActionSet.java

     *
     * Implements {@link InternalListener} as components themselves should be decorated if appropriate.
     *
     * @param <T> the type of the subject of the action
     */
    public abstract class ImmutableActionSet<T> implements Action<T>, InternalListener {
        private static final int FEW_VALUES = 5;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top