Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. .github/workflows/notify-on-rc-for-manual-test.yml

    name: IDE Experience team notifier
    run-name: Notify the IDE Experience team about new RCs for manual testing
    on:
      push:
        tags:
          - 'v*.*.*-RC1'
    
    permissions: {}
    
    jobs:
      send-slack-notification:
        runs-on: ubuntu-latest
        steps:
          - name: Send Slack notification about new RCs for manual testing
            id: slack
            uses: slackapi/slack-github-action@v1.23.0
            with:
              payload: |
                {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1K 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. 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)
Back to top