Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 349 for unavailable (0.1 sec)

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

         */
        IP_CHANGE(4),
    
        /**
         * Share deleted - share removal notification
         */
        SHARE_DELETE(5),
    
        /**
         * Cluster node unavailable - node down event
         */
        NODE_UNAVAILABLE(6),
    
        /**
         * Cluster node available - node up event
         */
        NODE_AVAILABLE(7);
    
        private final int value;
    
        /**
         * Creates a new WitnessEventType with the specified value.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/trans/TransWaitNamedPipe.java

    import jcifs.Configuration;
    
    /**
     * SMB1 Transaction Wait Named Pipe request implementation.
     * Implements the TRANS_WAIT_NAMED_PIPE transaction to wait for a named pipe
     * to become available when the pipe server is busy or temporarily unavailable.
     *
     * @author mbechler
     */
    public class TransWaitNamedPipe extends SmbComTransaction {
    
        /**
         * Constructs a wait request for a named pipe.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

      @SuppressWarnings("InlineMeInliner") // String.repeat unavailable under Java 8
      static final String LOTS_OF_DELTAS = Strings.repeat(DELTA, 62);
    
      @SuppressWarnings("InlineMeInliner") // String.repeat unavailable under Java 8
      private static final String ALMOST_TOO_MANY_LEVELS = Strings.repeat("a.", 127);
    
      @SuppressWarnings("InlineMeInliner") // String.repeat unavailable under Java 8
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 17.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/witness/WitnessNotification.java

        // Notification flags
        /** Resource state is unknown */
        public static final int WITNESS_RESOURCE_STATE_UNKNOWN = 0x00000000;
        /** Resource is available for use */
        public static final int WITNESS_RESOURCE_STATE_AVAILABLE = 0x00000001;
        /** Resource is unavailable */
        public static final int WITNESS_RESOURCE_STATE_UNAVAILABLE = 0x000000FF;
    
        /**
         * Creates a new empty witness notification.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/exception/WebApiExceptionTest.java

        }
    
        public void test_constructor_withStatusCodeAndException() {
            // Test constructor with status code and exception
            int statusCode = 503;
            String causeMessage = "Service temporarily unavailable";
            Exception cause = new IllegalStateException(causeMessage);
    
            WebApiException exception = new WebApiException(statusCode, cause);
    
            assertEquals(statusCode, exception.getStatusCode());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb/SSPContextTest.java

            }
        }
    
        @Nested
        @DisplayName("Invalid and null inputs")
        class InvalidInputs {
            @Test
            @DisplayName("getSigningKey throws when unavailable")
            void testGetSigningKeyThrows() {
                DummySSPContext ctx = new DummySSPContext(null, false, null, null, 0, false);
                CIFSException ex = assertThrows(CIFSException.class, ctx::getSigningKey);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/SmbResource.java

         */
        SmbResource resolve(String name) throws CIFSException;
    
        /**
         * Get the file index
         *
         * @return server side file index, 0 if unavailable
         * @throws CIFSException if an error occurs accessing the resource
         */
        long fileIndex() throws CIFSException;
    
        /**
         * Return the attributes of this file. Attributes are represented as a
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 28K bytes
    - Viewed (1)
  8. src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java

        }
    
        // Test add generator available
        public void test_add_availableGenerator() {
            TestThumbnailGenerator generator = new TestThumbnailGenerator();
            generator.available = true;
    
            thumbnailManager.add(generator);
            assertEquals(1, thumbnailManager.generatorList.size());
        }
    
        // Test add generator not available
        public void test_add_unavailableGenerator() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  9. docs/smb3-features/06-witness-protocol-design.md

        IP_CHANGE(4),             // IP address changed
        SHARE_DELETE(5),          // Share deleted
        NODE_UNAVAILABLE(6),      // Cluster node unavailable
        NODE_AVAILABLE(7);        // Cluster node available
        
        private final int value;
        
        WitnessEventType(int value) {
            this.value = value;
        }
        
        public int getValue() { return value; }
    }
    ```
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 42K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbOperationException.java

            // Transient errors
            BUSY("Server busy", ErrorCategory.TRANSIENT, true), TRY_AGAIN("Try again later", ErrorCategory.TRANSIENT,
                    true), SERVICE_UNAVAILABLE("Service temporarily unavailable", ErrorCategory.TRANSIENT, true),
    
            // Generic errors
            UNKNOWN_ERROR("Unknown error", ErrorCategory.UNKNOWN, false), INTERNAL_ERROR("Internal error", ErrorCategory.UNKNOWN, false);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 16.5K bytes
    - Viewed (0)
Back to top