Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 89 for Notifier (1.22 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/internal/publicsuffix/PublicSuffixTesting.jvm.kt

    actual class PublicSuffixTestRunner(
      klass: Class<*>,
    ) : Runner() {
      private val delegate = JUnit4(klass)
    
      override fun getDescription() = delegate.description
    
      override fun run(notifier: RunNotifier?) = delegate.run(notifier)
    
      override fun testCount() = delegate.testCount()
    }
    
    actual fun beforePublicSuffixTest() {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri May 23 16:58:05 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/lease/DirectoryChangeNotifier.java

             */
            public void setNotificationFuture(CompletableFuture<Void> future) {
                this.notificationFuture = future;
            }
        }
    
        /**
         * Create a new directory change notifier
         *
         * @param manager directory lease manager
         */
        public DirectoryChangeNotifier(DirectoryLeaseManager manager) {
            this.leaseManager = manager;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 13.7K bytes
    - Viewed (0)
  3. docs/smb3-features/04-directory-leasing-design.md

                public boolean isDirectory() { return fileInfo.isDirectory(); }
                // ... other attribute methods
            });
            
            return file;
        }
    }
    ```
    
    ### 4.4 Directory Change Notifier
    ```java
    package jcifs.internal.smb2.lease;
    
    import jcifs.internal.smb2.ServerMessageBlock2;
    import java.util.concurrent.ConcurrentHashMap;
    
    public class DirectoryChangeNotifier {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/mdo/maven.mdo

            </field>
            <field>
              <name>notifiers</name>
              <version>4.0.0+</version>
              <description>Configuration for notifying developers/users when a build is unsuccessful,
                including user information and notification mode.</description>
              <association>
                <multiplicity>*</multiplicity>
                <type>Notifier</type>
              </association>
            </field>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Aug 07 14:32:16 UTC 2025
    - 132.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/job/JobExecutor.java

        /**
         * Initiates shutdown of the job executor.
         * This method notifies the shutdown listener to perform cleanup operations.
         */
        public void shutdown() {
            shutdownListener.onShutdown();
        }
    
        /**
         * Adds a shutdown listener to be notified when the executor is shutting down.
         *
         * @param listener the shutdown listener to add
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  6. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    02B6          ; mapped                 ; 0281          # 1.1  MODIFIER LETTER SMALL CAPITAL INVERTED R
    02B7          ; mapped                 ; 0077          # 1.1  MODIFIER LETTER SMALL W
    02B8          ; mapped                 ; 0079          # 1.1  MODIFIER LETTER SMALL Y
    02B9..02C1    ; valid                                  # 1.1  MODIFIER LETTER PRIME..MODIFIER LETTER REVERSED GLOTTAL STOP
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java

            Field serialVersionField = FessLabels.class.getDeclaredField("serialVersionUID");
            assertNotNull(serialVersionField);
            assertTrue(Modifier.isStatic(serialVersionField.getModifiers()));
            assertTrue(Modifier.isFinal(serialVersionField.getModifiers()));
            assertTrue(Modifier.isPrivate(serialVersionField.getModifiers()));
            serialVersionField.setAccessible(true);
            assertEquals(1L, serialVersionField.getLong(null));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/lang/ModifierUtil.java

         * @return true if static, false otherwise
         */
        public static boolean isStatic(final int modifier) {
            return Modifier.isStatic(modifier);
        }
    
        /**
         * Checks if the specified modifier is final.
         *
         * @param modifier
         *            the modifier to check
         * @return true if final, false otherwise
         */
        public static boolean isFinal(final int modifier) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  9. src/test/java/jcifs/https/HandlerTest.java

                // When
                var field = Handler.class.getField("DEFAULT_HTTPS_PORT");
    
                // Then
                assertTrue(Modifier.isPublic(field.getModifiers()));
                assertTrue(Modifier.isStatic(field.getModifiers()));
                assertTrue(Modifier.isFinal(field.getModifiers()));
                assertEquals(int.class, field.getType());
            }
        }
    
        @Nested
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java

            Field[] fields = FessHtmlPath.class.getDeclaredFields();
            for (Field field : fields) {
                int modifiers = field.getModifiers();
                if (Modifier.isPublic(modifiers) && Modifier.isStatic(modifiers) && Modifier.isFinal(modifiers)) {
                    if (field.getType().equals(HtmlNext.class)) {
                        Object value = field.get(null);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
Back to top