Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 250 for notifiers (0.24 sec)

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

    import org.gradle.buildinit.plugins.internal.BuildConverter;
    import org.gradle.buildinit.plugins.internal.InitSettings;
    import org.gradle.buildinit.plugins.internal.modifiers.BuildInitDsl;
    import org.gradle.buildinit.plugins.internal.modifiers.BuildInitTestFramework;
    import org.gradle.buildinit.plugins.internal.modifiers.ModularizationOption;
    import org.gradle.util.internal.IncubationLogger;
    import org.gradle.workers.WorkerExecutor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 19:14:24 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. pkg/kubelet/container/testing/fake_ready_provider.go

    import (
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    )
    
    // FakeReadyProvider implements a fake ready provider
    type FakeReadyProvider struct {
    	kubecontainer.SourcesReadyProvider
    }
    
    // AllReady notifies caller that the Fake Provider is ready.
    func (frp *FakeReadyProvider) AllReady() bool {
    	return true
    }
    
    // NewFakeReadyProvider creates a FakeReadyProvider object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelBuildingListener.java

     * errors while processing the event, it can report these problems via {@link ModelBuildingEvent#problems()}.
     */
    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.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/dispatch/FailureHandlingDispatchTest.groovy

        def "dispatches message to target"() {
            when:
            dispatch.dispatch("message")
    
            then:
            1 * target.dispatch("message")
        }
    
        def "notifies handler on failure"() {
            def failure = new RuntimeException()
    
            when:
            dispatch.dispatch("message")
    
            then:
            1 * target.dispatch("message") >> { throw failure }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/threshold_notifier_unsupported.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package eviction
    
    import "k8s.io/klog/v2"
    
    // NewCgroupNotifier creates a cgroup notifier that does nothing because cgroups do not exist on non-linux systems.
    func NewCgroupNotifier(path, attribute string, threshold int64) (CgroupNotifier, error) {
    	klog.V(5).InfoS("cgroup notifications not supported")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/modifiers/KtDeclarationModifiersRenderer.kt

     */
    
    package org.jetbrains.kotlin.analysis.api.renderer.declarations.modifiers
    
    import org.jetbrains.kotlin.analysis.api.KaSession
    import org.jetbrains.kotlin.analysis.api.renderer.base.KaKeywordsRenderer
    import org.jetbrains.kotlin.analysis.api.renderer.declarations.modifiers.renderers.*
    import org.jetbrains.kotlin.analysis.api.symbols.KaDeclarationSymbol
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4TestFailureIntegrationTest.groovy

                    public Description getDescription() {
                        return Description.createSuiteDescription(type);
                    }
    
                    @Override
                    public void run(RunNotifier notifier) {
                        throw new UnsupportedOperationException("broken");
                    }
                }
            """.stripIndent()
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginEndOfBuildCallbackIntegrationTest.groovy

        }
    
        def "end of build listener is notified on success"() {
            when:
            succeeds succeedingTaskName
    
            then:
            plugin.assertEndOfBuildWithFailure(output, null)
    
            when:
            succeeds succeedingTaskName
    
            then:
            plugin.assertEndOfBuildWithFailure(output, null)
        }
    
        def "end of build listener is notified on failure"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/FlushOutputEvent.java

     * limitations under the License.
     */
    
    package org.gradle.internal.logging.events;
    
    import org.gradle.api.logging.LogLevel;
    
    import javax.annotation.Nullable;
    
    /**
     * Notifies output consumers that might be queueing messages to immediately flush their queues.
     */
    public class FlushOutputEvent extends OutputEvent implements InteractiveEvent {
        @Nullable
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 00:09:24 UTC 2024
    - 1015 bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/EndOutputEvent.java

     * limitations under the License.
     */
    
    package org.gradle.internal.logging.events;
    
    import org.gradle.api.logging.LogLevel;
    
    import javax.annotation.Nullable;
    
    /**
     * Notifies output consumer tof the end of the output event stream.
     */
    public class EndOutputEvent extends OutputEvent {
        @Nullable
        @Override
        public LogLevel getLogLevel() {
            return null;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 957 bytes
    - Viewed (0)
Back to top