Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 239 for CLOSED (0.06 sec)

  1. src/test/java/jcifs/internal/smb2/Smb2SigningDigestTest.java

                    assertTrue(true, "Sign operation after close should either throw exception or handle gracefully");
                } catch (RuntimeException e) {
                    // Accept runtime exceptions that might be thrown due to closed state
                    assertTrue(e.getMessage() != null, "Exception should have a message: " + e.getClass().getSimpleName());
                }
    
                try {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 43.7K bytes
    - Viewed (0)
  2. docs/smb3-features/05-rdma-smb-direct-design.md

        protected int maxReadWriteSize;
        
        public enum RdmaConnectionState {
            DISCONNECTED,
            CONNECTING,
            CONNECTED,
            ESTABLISHED,
            ERROR,
            CLOSING,
            CLOSED
        }
        
        public RdmaConnection(InetSocketAddress remote, InetSocketAddress local) {
            this.remoteAddress = remote;
            this.localAddress = local;
            this.sendCredits = new AtomicInteger(0);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 35.9K bytes
    - Viewed (0)
  3. src/test/java/jcifs/SmbResourceTest.java

                // When/Then
                assertDoesNotThrow(() -> {
                    try (SmbResource r = resource) {
                        // Resource will be automatically closed
                    }
                }, "Should work in try-with-resources");
            }
    
            @Test
            @DisplayName("multiple operations should work together")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 35K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbTransportImpl.java

             */
            try {
                this.socket.setSoTimeout(this.transportContext.getConfig().getConnTimeout());
                if (peekKey() == null) { /* try to read header */
                    throw new IOException("transport closed in negotiate");
                }
            } finally {
                this.socket.setSoTimeout(this.transportContext.getConfig().getSoTimeout());
            }
            final int size = Encdec.dec_uint16be(this.sbuf, 2) & 0xFFFF;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/dict/mapping/CharMappingFileTest.java

            // This test verifies that close() handles errors gracefully
            CharMappingItem newItem = new CharMappingItem(0, new String[] { "x", "y" }, "z");
    
            // Insert will trigger MappingUpdater which will be closed automatically
            charMappingFile.insert(newItem);
    
            // Verify the operation completed successfully despite any internal errors
            PagingList<CharMappingItem> result = charMappingFile.selectList(0, 10);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

        /**
         * Access to the file is random
         */
        public static final int FILE_RANDOM_ACCESS = 0x800;
        /**
         * Delete the file when the last handle to it is closed
         */
        public static final int FILE_DELETE_ON_CLOSE = 0x1000;
        /**
         * Open file by its file ID
         */
        public static final int FILE_OPEN_BY_FILE_ID = 0x2000;
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  7. CHANGELOG.md

        of unacknowledged data per stream and no per-connection limit.
    
     *  Fix: Don't close a `Deflater` while we're still using it to compress a web socket message. We
        had a severe bug where web sockets were closed on the wrong thread, which caused
        `NullPointerException` crashes in `Deflater`.
    
     *  Fix: Don't crash after a web socket fails its connection upgrade. We incorrectly released
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 19:32:33 UTC 2025
    - 31.6K bytes
    - Viewed (1)
  8. src/main/webapp/js/admin/adminlte.min.js

    ct=function(){return n.default.fn.Layout=ze,Me._jQueryInterface};var qe="PushMenu",Oe="lte.pushmenu",Ne="."+Oe,Pe=n.default.fn[qe],Ue='[data-widget="pushmenu"]',Be="body",$e="sidebar-collapse",Je="sidebar-open",We="sidebar-is-opening",Ve="sidebar-closed",Ge={autoCollapseSize:992,enableRemember:!1,noTransitionAfterReload:!0,animationSpeed:300},Ke=function(){function e(e,t){this._element=e,this._options=n.default.extend({},Ge,t),0===n.default("#sidebar-overlay").length&&this._addOverlay(),this._init()}var...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 26 01:49:09 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/primitives/Chars.java

          if (array[i] > max) {
            max = array[i];
          }
        }
        return max;
      }
    
      /**
       * Returns the value nearest to {@code value} which is within the closed range {@code [min..max]}.
       *
       * <p>If {@code value} is within the range {@code [min..max]}, {@code value} is returned
       * unchanged. If {@code value} is less than {@code min}, {@code min} is returned, and if {@code
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 24.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/primitives/Shorts.java

          if (array[i] > max) {
            max = array[i];
          }
        }
        return max;
      }
    
      /**
       * Returns the value nearest to {@code value} which is within the closed range {@code [min..max]}.
       *
       * <p>If {@code value} is within the range {@code [min..max]}, {@code value} is returned
       * unchanged. If {@code value} is less than {@code min}, {@code min} is returned, and if {@code
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.8K bytes
    - Viewed (0)
Back to top