Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 250 for notifiers (0.31 sec)

  1. 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)
  2. 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)
  3. subprojects/core/src/main/java/org/gradle/configuration/internal/DynamicCallContextTracker.java

    public interface DynamicCallContextTracker {
        /**
         * Notifies the tracker that the control flow entered the context of a new dynamic call.
         * The tracker itself notifies all the registered listeners.
         *
         * @param entryPoint the key to identify the dynamic call
         */
        void enterDynamicCall(Object entryPoint);
    
        /**
         * Notifies the tracker that the dynamic call ended.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorData.groovy

        Description getDescription() {
            return Description.createSuiteDescription(type)
        }
    
        void run(RunNotifier notifier) {
            notifier.fireTestStarted(Description.createTestDescription(type, "ok1"))
            notifier.fireTestFinished(Description.createTestDescription(type, "ok1"))
            notifier.fireTestStarted(Description.createTestDescription(type, "broken"))
            throw failure.rawFailure
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. build-logic/build-init-samples/src/main/kotlin/gradlebuild/generate-samples.gradle.kts

    import org.gradle.buildinit.plugins.internal.modifiers.Language
    import org.gradle.buildinit.plugins.internal.modifiers.Language.CPP
    import org.gradle.buildinit.plugins.internal.modifiers.Language.GROOVY
    import org.gradle.buildinit.plugins.internal.modifiers.Language.JAVA
    import org.gradle.buildinit.plugins.internal.modifiers.Language.KOTLIN
    import org.gradle.buildinit.plugins.internal.modifiers.Language.SCALA
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/model/Description.java

    import static java.util.Optional.ofNullable;
    import static org.gradle.buildinit.plugins.internal.modifiers.BuildInitTestFramework.JUNIT;
    import static org.gradle.buildinit.plugins.internal.modifiers.BuildInitTestFramework.JUNIT_JUPITER;
    import static org.gradle.buildinit.plugins.internal.modifiers.BuildInitTestFramework.KOTLINTEST;
    import static org.gradle.buildinit.plugins.internal.modifiers.BuildInitTestFramework.SCALATEST;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 07:33:54 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BasicBuildGenerator.java

    import org.gradle.buildinit.plugins.internal.modifiers.BuildInitDsl;
    import org.gradle.buildinit.plugins.internal.modifiers.BuildInitTestFramework;
    import org.gradle.buildinit.plugins.internal.modifiers.ComponentType;
    import org.gradle.buildinit.plugins.internal.modifiers.Language;
    import org.gradle.buildinit.plugins.internal.modifiers.ModularizationOption;
    
    import java.util.List;
    import java.util.Optional;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestDryRunner.java

        }
    
        @Override
        public void run(RunNotifier notifier) {
            LinkedList<Description> queue = new LinkedList<Description>();
            queue.add(runner.getDescription());
            while (!queue.isEmpty()) {
                Description description = queue.removeFirst();
                queue.addAll(description.getChildren());
                if (description.isTest()) {
                    notifier.fireTestIgnored(description);
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/accessors/TestWithClassPath.kt

        classPathWithType(name, ACC_PRIVATE)
    
    
    internal
    fun TestWithTempFiles.classPathWithType(name: String, vararg modifiers: Int): ClassPath = classPathOf(
        newFolder().also { rootDir ->
            writeClassFileTo(rootDir, name, *modifiers)
        }
    )
    
    
    internal
    fun TestWithTempFiles.classPathWith(builder: ClassPathBuilderScope.() -> Unit): ClassPath =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/modifiers/renderers/KtKeywordsFilter.kt

                }
    
            public fun onlyWith(vararg modifiers: KtKeywordToken): KaRendererKeywordFilter =
                KaRendererKeywordFilter { modifier, _ -> modifier in modifiers }
    
            public fun onlyWith(modifiers: TokenSet): KaRendererKeywordFilter =
                KaRendererKeywordFilter { modifier, _ -> modifier in modifiers }
    
            public fun without(vararg modifiers: KtKeywordToken): KaRendererKeywordFilter =
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top