Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 221 for notifiers (0.25 sec)

  1. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/BuildScanEndOfBuildNotifierIntegrationTest.groovy

                publishDummyPlugin(executer)
            }
    
            buildFile << """
                def notifier = services.get(${BuildScanEndOfBuildNotifier.name})
            """
        }
    
        def "can observe successful build after completion of user logic and build outcome is reported"() {
            when:
            buildFile << """
                notifier.notify {
                    println "failure is null: \${it.failure == null}"
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSourceProviderFactory.java

    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import javax.annotation.Nullable;
    
    /**
     * Service to create providers from {@link ValueSource}s.
     *
     * Notifies interested parties when values are obtained from their sources.
     *
     * @since 6.1
     */
    @ServiceScope(Scope.Build.class)
    public interface ValueSourceProviderFactory {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/types.go

    // ThresholdNotifier manages CgroupNotifiers based on memory eviction thresholds, and performs a function
    // when memory eviction thresholds are crossed
    type ThresholdNotifier interface {
    	// Start calls the notifier function when the CgroupNotifier notifies the ThresholdNotifier that an event occurred
    	Start()
    	// UpdateThreshold updates the memory cgroup threshold based on the metrics provided.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docsTest/java/org/gradle/docs/samples/RunNotifierWrapper.java

        private final RunNotifier notifier;
    
        public RunNotifierWrapper(RunNotifier notifier) {
            this.notifier = notifier;
        }
    
        @Override
        public void fireTestSuiteStarted(Description description) {
            notifier.fireTestSuiteStarted(description);
        }
    
        @Override
        public void fireTestSuiteFinished(Description description) {
            notifier.fireTestSuiteFinished(description);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. maven-model/src/test/java/org/apache/maven/model/NotifierTest.java

    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Tests {@code Notifier}.
     *
     */
    class NotifierTest {
    
        @Test
        void testHashCodeNullSafe() {
            new Notifier().hashCode();
        }
    
        @Test
        void testEqualsNullSafe() {
            assertFalse(new Notifier().equals(null));
    
            new Notifier().equals(new Notifier());
        }
    
        @Test
        void testEqualsIdentity() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/classpath/InstrumentedTest.groovy

    class InstrumentedTest extends Specification {
        @Rule
        final SetSystemProperties systemProperties = new SetSystemProperties()
    
        def cleanup() {
            InstrumentedInputs.discardListener()
        }
    
        def "notifies listener when system property is used"() {
            def listener = withInstrumentedInputsListener()
    
            System.setProperty("prop", "value")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/ModelGraphTest.groovy

    class ModelGraphTest extends RegistrySpec {
        def graph = new ModelGraph(root())
        def nodes = [:]
    
        def setup() {
            nodes[graph.root.path] = graph.root
        }
    
        def "notifies listener when node added"() {
            def listener = allAcceptingListener()
            def a = node("a")
            def b = node("b")
    
            given:
            graph.addListener(listener)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  8. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/TestResultProcessor.java

     */
    @UsedByScanPlugin("test-distribution, test-retry")
    public interface TestResultProcessor {
        /**
         * Notifies this processor that a test has started execution.
         */
        @UsedByScanPlugin("test-distribution")
        void started(TestDescriptorInternal test, TestStartEvent event);
    
        /**
         * Notifies this processor that a test has completed execution.
         */
        @UsedByScanPlugin("test-distribution")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4IgnoreClassIntegrationTest.groovy

                        public void run(RunNotifier notifier) {
                            for (Description description : testSuiteDescription.getChildren()) {
                                notifier.fireTestStarted(description);
                                try {
                                    if (testContainingInstance.doSomething()) {
                                        notifier.fireTestFinished(description);
                                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/memory_threshold_notifier_test.go

    			notifierFactory := NewMockNotifierFactory(mockCtrl)
    			notifier := NewMockCgroupNotifier(mockCtrl)
    
    			m := newTestMemoryThresholdNotifier(tc.evictionThreshold, notifierFactory, nil)
    			notifierFactory.EXPECT().NewCgroupNotifier(testCgroupPath, memoryUsageAttribute, tc.expectedThreshold.Value()).Return(notifier, tc.updateThresholdErr).Times(1)
    			var events chan<- struct{} = m.events
    			notifier.EXPECT().Start(events).Return().AnyTimes()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top