Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 250 for notifiers (0.15 sec)

  1. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/SwiftProjectInitDescriptor.java

    package org.gradle.buildinit.plugins.internal;
    
    import org.gradle.api.internal.DocumentationRegistry;
    import org.gradle.buildinit.plugins.internal.modifiers.BuildInitTestFramework;
    import org.gradle.buildinit.plugins.internal.modifiers.Language;
    import org.gradle.buildinit.plugins.internal.modifiers.ModularizationOption;
    import org.gradle.internal.os.OperatingSystem;
    import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 19:41:01 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingEventCatapult.java

    /**
     * Assists in firing events from a generic method by abstracting from the actual callback method to be called on the
     * listener.
     *
     */
    interface ModelBuildingEventCatapult {
    
        /**
         * Notifies the specified listener of the given event.
         *
         * @param listener The listener to notify, must not be {@code null}.
         * @param event The event to fire, must not be {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/LanguageLibraryProjectInitDescriptor.java

     */
    
    package org.gradle.buildinit.plugins.internal;
    
    import org.gradle.api.plugins.JvmTestSuitePlugin;
    import org.gradle.buildinit.plugins.internal.modifiers.BuildInitTestFramework;
    import org.gradle.buildinit.plugins.internal.modifiers.ModularizationOption;
    
    import java.util.Collections;
    import java.util.Optional;
    import java.util.Set;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingListener.java

     * {@link AbstractModelBuildingListener} rather than to directly implement this interface.
     *
     */
    public interface ModelBuildingListener {
    
        /**
         * Notifies the listener that the model has been constructed to the extent where build extensions can be processed.
         *
         * @param event The details about the event.
         */
        void buildExtensionsAssembled(ModelBuildingEvent event);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/method/WeaklyTypeReferencingMethod.java

        private final ModelType<T> declaringType;
        private final ModelType<R> returnType;
        private final String name;
        private final ImmutableList<ModelType<?>> paramTypes;
        private final int modifiers;
    
        private int cachedHashCode = -1;
    
        private WeaklyTypeReferencingMethod(ModelType<T> declaringType, ModelType<R> returnType, Method method) {
            if (declaringType.getRawClass() != method.getDeclaringClass()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/state/OwnerAware.java

    /**
     * Represents an object that may be owned by some model object. This is mixed-in to generated classes and may
     * also be implemented directly.
     */
    public interface OwnerAware {
        /**
         * Notifies this object that it now has an owner associated with it.
         *
         * @param owner The owner object, if any.
         * @param displayName The display name for this object.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. pilot/pkg/xds/eventhandler.go

    )
    
    // EventHandler allows for generic monitoring of xDS ACKS and disconnects, for the purpose of tracking
    // Config distribution through the mesh.
    type DistributionStatusCache interface {
    	// RegisterEvent notifies the implementer of an xDS ACK, and must be non-blocking
    	RegisterEvent(conID string, eventType EventType, nonce string)
    	RegisterDisconnect(s string, types sets.Set[EventType])
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/MethodsRemovedInInternalSuperClassRule.groovy

            collect(result, c.superclass)
        }
    
        private boolean isPublicApi(CtMethod method) {
            return Modifier.isPublic(method.modifiers) || Modifier.isProtected(method.modifiers)
        }
    
        private List<String> filterChangesToReport(CtClass c, Set<CtMethod> methods) {
            return methods.findAll { isFirstPublicClassInHierarchy(it, c) }*.longName.sort()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/annotations/TestAnnotationHandlingSupport.groovy

    trait TestAnnotationHandlingSupport {
    
        enum Modifiers implements AnnotationCategory {
            COLOR;
    
            @Override
            String getDisplayName() {
                name()
            }
        }
    
        TypeAnnotationMetadataStore typeAnnotationMetadataStore = new DefaultTypeAnnotationMetadataStore(
            [ThisIsAThing],
            [(TestNested): TYPE, (Long): TYPE, (Short): TYPE, (Tint): Modifiers.COLOR],
            ["java", "groovy"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultFinalizingValidatingPropertyTest.groovy

    import org.gradle.api.internal.tasks.properties.ValidationActions
    import org.gradle.internal.properties.PropertyValue
    import spock.lang.Specification
    
    class DefaultFinalizingValidatingPropertyTest extends Specification {
        def "notifies property value of start and end of execution when it implements lifecycle interface"() {
            def value = Mock(LifecycleAwareValue)
            def valueWrapper = Stub(PropertyValue)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:15:55 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top