Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 225 for notifications (0.17 sec)

  1. src/main/java/jcifs/Configuration.java

         */
        long getDirectoryCacheTimeout();
    
        /**
         * Property {@code jcifs.smb.client.directoryNotificationsEnabled} (boolean, default true)
         *
         * @return whether directory change notifications are enabled
         */
        boolean isDirectoryNotificationsEnabled();
    
        /**
         * Property {@code jcifs.smb.client.maxDirectoryCacheEntries} (int, default 1000)
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  2. docs/es/docs/tutorial/background-tasks.md

    Esto incluye, por ejemplo:
    
    * Notificaciones por email enviadas después de realizar una acción:
      * Como conectarse a un servidor de email y enviar un email tiende a ser "lento" (varios segundos), puedes devolver el response de inmediato y enviar la notificación por email en segundo plano.
    * Procesamiento de datos:
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

                systemProperties.store();
            } catch (final Exception e) {
                logger.warn("Failed to send a test mail.", e);
                saveError(messages -> messages.addErrorsFailedToSendTestmail(GLOBAL));
            }
    
            return redirectByParam(AdminGeneralAction.class, "notificationTo", form.notificationTo);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/general/MailForm.java

        /** The purge user info day setting. */
        public String purgeUserInfoDay;
    
        /** The purge by bots setting. */
        public String purgeByBots;
    
        /** The notification recipient setting. */
        @Required
        @Size(max = 1000)
        public String notificationTo;
    
        /** The suggest search log setting. */
        public String suggestSearchLog;
    
        /** The suggest documents setting. */
        public String suggestDocuments;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/witness/WitnessNotificationTest.java

            notification.addNewIPAddress(ipv4);
            notification.addNewIPAddress(ipv6);
            notification.addOldIPAddress(ipv4);
    
            List<WitnessNotification.WitnessIPAddress> newAddresses = notification.getNewIPAddresses();
            List<WitnessNotification.WitnessIPAddress> oldAddresses = notification.getOldIPAddresses();
    
            assertEquals(2, newAddresses.size());
            assertEquals(1, oldAddresses.size());
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 5K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb2/lock/Smb2OplockBreakNotificationTest.java

        private Smb2OplockBreakNotification notification;
    
        @BeforeEach
        void setUp() {
            mockConfig = mock(Configuration.class);
            notification = new Smb2OplockBreakNotification(mockConfig);
        }
    
        @Nested
        @DisplayName("Constructor Tests")
        class ConstructorTests {
    
            @Test
            @DisplayName("Should create notification with configuration")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/cache/NullCacheTest.java

        Object key = new Object();
        assertSame(computed, cache.getUnchecked(key));
        RemovalNotification<Object, Object> notification = listener.remove();
        assertSame(key, notification.getKey());
        assertSame(computed, notification.getValue());
        assertSame(RemovalCause.SIZE, notification.getCause());
        assertTrue(listener.isEmpty());
        checkEmpty(cache);
      }
    
      public void testGet_expireAfterWrite() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/cache/NullCacheTest.java

        Object key = new Object();
        assertSame(computed, cache.getUnchecked(key));
        RemovalNotification<Object, Object> notification = listener.remove();
        assertSame(key, notification.getKey());
        assertSame(computed, notification.getValue());
        assertSame(RemovalCause.SIZE, notification.getCause());
        assertTrue(listener.isEmpty());
        checkEmpty(cache);
      }
    
      public void testGet_expireAfterWrite() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/FileNotifyInformation.java

     */
    package jcifs;
    
    /**
     * File notification information
     *
     *
     * @author mbechler
     *
     */
    public interface FileNotifyInformation {
    
        // filter flags
    
        /**
         * Any file name change in the watched directory or subtree causes a change notification wait operation to return.
         * Changes include renaming, creating, or deleting a file.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                        <label for="notificationTo" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.notification_to"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="notificationTo"/>
                                            <div class="input-group">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 14 00:36:40 UTC 2025
    - 39.6K bytes
    - Viewed (0)
Back to top