Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for Notifier (0.24 sec)

  1. 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>
    Plain Text
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Sat Nov 09 12:45:14 GMT 2019
    - 9.8K bytes
    - Viewed (0)
  2. 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>
    Plain Text
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Thu Dec 24 18:09:10 GMT 2020
    - 14.8K bytes
    - Viewed (0)
  3. 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>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 9.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>
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 14.8K bytes
    - Viewed (0)
  5. tensorflow/c/eager/immediate_execution_context.h

      // already exists.
      virtual Status AddFunctionDef(const FunctionDef& fdef) = 0;
    
      // Notifies about the function removal.
      virtual Status AddRemoveFunctionNotifier(const string& func,
                                               std::function<void()> notifier) = 0;
    
      // Same as `AddFunctionDef`, but additionally saves the `stack_traces` under
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Jul 06 08:34:00 GMT 2023
    - 12.3K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/helper/QueryHelperTest.java

                    Map.of("_default", List.of("QUERY1")), //
                    Set.of("QUERY1"), //
                    buildQuery("QUERY1^10"));
    
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 37.3K bytes
    - Viewed (0)
  7. .github/actions/notify-translations/app/main.py

            for comment in comments:
                if new_translation_message in comment.body:
                    already_notified_comment = comment
                elif done_translation_message in comment.body:
                    already_done_comment = comment
            logging.info(
                f"Already notified comment: {already_notified_comment}, already done comment: {already_done_comment}"
            )
    
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Wed Sep 27 23:01:46 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/reflect/Invokable.java

      public final boolean isPrivate() {
        return Modifier.isPrivate(getModifiers());
      }
    
      /** Returns true if the element is static. */
      public final boolean isStatic() {
        return Modifier.isStatic(getModifiers());
      }
    
      /**
       * Returns {@code true} if this method is final, per {@code Modifier.isFinal(getModifiers())}.
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Dec 14 20:35:03 GMT 2023
    - 18.6K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

        Field[] fields = type.getDeclaredFields();
        Arrays.sort(fields, BY_FIELD_NAME);
        for (Field field : fields) {
          if (Modifier.isPublic(field.getModifiers())
              && Modifier.isStatic(field.getModifiers())
              && Modifier.isFinal(field.getModifiers())) {
            if (field.getGenericType() == field.getType() && type.isAssignableFrom(field.getType())) {
              field.setAccessible(true);
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Apr 17 16:33:44 GMT 2024
    - 21K bytes
    - Viewed (1)
  10. android/guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

        Field[] fields = type.getDeclaredFields();
        Arrays.sort(fields, BY_FIELD_NAME);
        for (Field field : fields) {
          if (Modifier.isPublic(field.getModifiers())
              && Modifier.isStatic(field.getModifiers())
              && Modifier.isFinal(field.getModifiers())) {
            if (field.getGenericType() == field.getType() && type.isAssignableFrom(field.getType())) {
              field.setAccessible(true);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 17 16:33:44 GMT 2024
    - 20.5K bytes
    - Viewed (0)
Back to top