Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 122 for notifiers (0.13 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/apache/maven/maven-parent/4/maven-parent-4.pom

      <ciManagement>
        <system>continuum</system>
        <url>http://maven.zones.apache.org:8080/continuum</url>
        <notifiers>
          <notifier>
            <type>mail</type>
            <configuration>
              <address>******@****.***</address>
            </configuration>
          </notifier>
        </notifiers>
      </ciManagement>
      <inceptionYear>2002</inceptionYear>
      <mailingLists>
        <mailingList>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 9.8K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/maven-parent/4/maven-parent-4.pom

      <ciManagement>
        <system>continuum</system>
        <url>http://maven.zones.apache.org:8080/continuum</url>
        <notifiers>
          <notifier>
            <type>mail</type>
            <configuration>
              <address>******@****.***</address>
            </configuration>
          </notifier>
        </notifiers>
      </ciManagement>
      <inceptionYear>2002</inceptionYear>
      <mailingLists>
        <mailingList>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Nov 09 12:45:14 UTC 2019
    - 9.8K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/maven-parent/5/maven-parent-5.pom

      <ciManagement>
        <system>continuum</system>
        <url>http://maven.zones.apache.org/continuum</url>
        <notifiers>
          <notifier>
            <type>mail</type>
            <configuration>
              <address>******@****.***</address>
            </configuration>
          </notifier>
        </notifiers>
      </ciManagement>
      <inceptionYear>2002</inceptionYear>
      <mailingLists>
        <mailingList>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 24 18:09:10 UTC 2020
    - 14.8K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/apache/maven/maven-parent/5/maven-parent-5.pom

      <ciManagement>
        <system>continuum</system>
        <url>http://maven.zones.apache.org/continuum</url>
        <notifiers>
          <notifier>
            <type>mail</type>
            <configuration>
              <address>******@****.***</address>
            </configuration>
          </notifier>
        </notifiers>
      </ciManagement>
      <inceptionYear>2002</inceptionYear>
      <mailingLists>
        <mailingList>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/eviction_manager.go

    	}
    
    	if m.clock.Since(m.thresholdsLastUpdated) > notifierRefreshInterval {
    		m.thresholdsLastUpdated = m.clock.Now()
    		for _, notifier := range m.thresholdNotifiers {
    			if err := notifier.UpdateThreshold(summary); err != nil {
    				klog.InfoS("Eviction manager: failed to update notifier", "notifier", notifier.Description(), "err", err)
    			}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 18:55:56 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultValueSourceProviderFactoryTest.groovy

            provider.get()
    
            then: "beforeValueObtained callback is notified"
            1 * computationListener.beforeValueObtained()
    
            then: "afterValueObtained callback is notified"
            1 * computationListener.afterValueObtained()
    
            then: "valueObtained is notified"
            obtainedValues.size() == 1
            obtainedValues[0].valueSourceType == EchoValueSource
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/MessageHubTest.groovy

            }
            thread.blockUntil.notified
    
            then:
            1 * handler.endStream() >> {
                thread.blockUntil.signal
                instant.notified
            }
            0 * _._
        }
    
        def "notifies handler that the end of incoming messages has been reached when stop requested and end-of-stream reached for all connections"() {
            BoundedDispatch<String> handler = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  8. platforms/jvm/normalization-java/src/test/groovy/org/gradle/internal/normalization/java/ApiClassExtractorTest.groovy

            hasField(clazz.clazz, 'foo', int).modifiers == Modifier.VOLATILE
            hasField(extracted, 'foo', int).modifiers == Modifier.VOLATILE
            hasField(clazz.clazz, 'bar', int).modifiers == Modifier.FINAL
            hasField(extracted, 'bar', int).modifiers == Modifier.FINAL
            hasMethod(clazz.clazz, 'getFoo').modifiers == Modifier.ABSTRACT
            hasMethod(extracted, 'getFoo').modifiers == Modifier.ABSTRACT
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  9. src/runtime/sema.go

    	lockWithRank(&l.lock, lockRankNotifyList)
    	s := l.head
    	l.head = nil
    	l.tail = nil
    
    	// Update the next ticket to be notified. We can set it to the current
    	// value of wait because any previous waiters are already in the list
    	// or will notice that they have already been notified when trying to
    	// add themselves to the list.
    	atomic.Store(&l.notify, l.wait.Load())
    	unlock(&l.lock)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestTaskSpec.groovy

        }
    
        def "notifies closure before test"() {
            def closure = Mock(Closure)
    
            given:
            expectTestPasses()
    
            task.beforeTest(closure)
    
            when:
            task.executeTests()
    
            then:
            _ * closure.maximumNumberOfParameters >> 0
            1 * closure.call()
            0 * closure._
        }
    
        def "notifies closure after test"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top