Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 225 for notifications (0.06 sec)

  1. src/main/java/jcifs/internal/witness/WitnessUnregisterRequest.java

     */
    package jcifs.internal.witness;
    
    /**
     * Represents a witness unregistration request as defined in MS-SWN specification.
     * Used to unregister from witness notifications.
     */
    public class WitnessUnregisterRequest {
        /**
         * Creates a new witness unregister request.
         */
        public WitnessUnregisterRequest() {
            // Default constructor
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

         */
        @Size(max = 10000)
        public String purgeByBots;
    
        /**
         * Email addresses to receive system notifications.
         * Multiple addresses can be specified, separated by commas.
         */
        @Size(max = 1000)
        public String notificationTo;
    
        /**
         * Enable or disable search suggestions based on search logs.
         * When enabled, suggestions are generated from previous searches.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/ServerMessageBlock2ResponseTest.java

            }
        }
    
        @Nested
        @DisplayName("Concurrency Tests")
        class ConcurrencyTests {
    
            @Test
            @DisplayName("Should handle concurrent received notifications")
            void testConcurrentReceived() throws InterruptedException {
                int threadCount = 10;
                CountDownLatch startLatch = new CountDownLatch(1);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbSessionImpl.java

        }
    
        /**
         * Handle a witness event
         *
         * @param notification the witness notification
         */
        private void handleWitnessEvent(WitnessNotification notification) {
            log.info("Handling witness event: {} for resource: {}", notification.getEventType(), notification.getResourceName());
    
            switch (notification.getEventType()) {
            case RESOURCE_CHANGE:
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/lock/Smb2LeaseBreakNotification.java

        private int breakReason;
        private int accessMaskHint;
        private int shareAccessHint;
    
        /**
         * Constructs an SMB2 lease break notification with the given configuration.
         *
         * @param config the configuration for this notification
         */
        public Smb2LeaseBreakNotification(Configuration config) {
            super(config);
        }
    
        /**
         * Gets the lease key that is being broken
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/witness/WitnessIntegrationTest.java

        }
    
        @Test
        void testMockServiceNotifications() {
            // Test notification sending (just logs for mock)
            mockService.sendNotification(WitnessEventType.RESOURCE_CHANGE, "TestResource");
    
            // Register a witness first
            String regId = mockService.registerWitness("TestResource", "192.168.1.100", 1);
    
            // Send notification affecting the registration
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 9.8K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/witness/WitnessRegistration.java

        private byte[] contextHandle;
    
        // Registration flags
        /** No special registration flags */
        public static final int WITNESS_REGISTER_NONE = 0x00000000;
        /** Register for IP address change notifications */
        public static final int WITNESS_REGISTER_IP_NOTIFICATION = 0x00000001;
    
        // Registration state
        private volatile WitnessRegistrationState state;
        private volatile long lastHeartbeat;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Mon Aug 25 14:34:10 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/background-tasks.md

    This includes, for example:
    
    * Email notifications sent after performing an action:
        * As connecting to an email server and sending an email tends to be "slow" (several seconds), you can return the response right away and send the email notification in the background.
    * Processing data:
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  9. .github/DISCUSSION_TEMPLATE/questions.yml

              * Read open questions until I find 2 where I can help someone and add a comment to help there.
              * I already hit the "watch" button in this repository to receive notifications and I commit to help at least 2 people that ask questions in the future.
              * Review one Pull Request by downloading the code and following [all the review process](https://fastapi.tiangolo.com/help-fastapi/#review-pull-requests).
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu Aug 03 15:59:41 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequestTest.java

            assertEquals(combinedFilter, readFilter);
            assertEquals(0x1F, readFilter); // 1 + 2 + 4 + 8 + 16 = 31 = 0x1F
        }
    
        @Test
        @DisplayName("Should handle all file change notifications")
        void testAllFileChangeNotifications() {
            // Given - all possible filters
            int allFilters = Smb2ChangeNotifyRequest.FILE_NOTIFY_CHANGE_FILE_NAME | Smb2ChangeNotifyRequest.FILE_NOTIFY_CHANGE_DIR_NAME
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.1K bytes
    - Viewed (0)
Back to top