Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 221 for notifiers (0.74 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  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. 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)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/BroadcastChangingOutputsStepTest.groovy

        def outputChangeListener = Mock(OutputChangeListener)
        def delegateResult = Stub(Result)
    
        def step = new BroadcastChangingOutputsStep<>(outputChangeListener, delegate)
    
        def "notifies listener about specific outputs changing"() {
            def outputDir = file("output-dir")
            def localStateDir = file("local-state-dir")
            def destroyableDir = file("destroyable-dir")
            def changingOutputs = [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:23 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/EventFiringTaskExecuterTest.groovy

        def state = new TaskStateInternal()
        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)
  9. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/DefaultFeatureFlagsTest.groovy

            flag.systemPropertyName >> "prop"
    
            flags.enable(flag)
    
            expect:
            !flags.isEnabled(flag)
            flags.isEnabledWithApi(flag)
        }
    
        def "querying flag status notifies listener"() {
            def flag = Stub(FeatureFlag)
            flag.systemPropertyName >> propertyName
    
            when:
            flags.isEnabled(flag)
    
            then:
            1 * featureFlagListener.flagRead(flag)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/async/AsyncConsumerActionExecutor.java

    /**
     * Implementations must be thread-safe.
     */
    public interface AsyncConsumerActionExecutor {
        /**
         * Runs some operation asynchronously against a consumer connection. Notifies the provided handler when
         * complete. Note that the action may have completed by the time this method returns.
         *
         * @throws IllegalStateException When this connection has been stopped or is stopping.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top