Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 842 for unavailable (0.46 sec)

  1. src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java

                this.bufDataOffset = this.totalParameterCount; // data comes right after data
    
                int available = this.maxBufferSize - this.parameterOffset;
                this.parameterCount = Math.min(this.totalParameterCount, available);
                available -= this.parameterCount;
    
                this.dataOffset = this.parameterOffset + this.parameterCount;
                this.pad2 = this.pad(this.dataOffset);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/io/InputStreamUtil.java

        }
    
        /**
         * A method that wraps exception handling for {@link InputStream#available()}.
         *
         * @param is the input stream (must not be {@literal null})
         * @return the available size
         */
        public static int available(final InputStream is) {
            assertArgumentNotNull("is", is);
    
            try {
                return is.available();
            } catch (final IOException e) {
                throw new IORuntimeException(e);
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/admin/webconfig/admin_webconfig_details.jsp

                                            <th><la:message key="labels.available"/></th>
                                            <td><la:hidden property="available"/> <c:if
                                                    test="${available=='true'}">
                                                <la:message key="labels.enabled"/>
                                            </c:if> <c:if test="${available=='false'}">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 10.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/crawler/interval/FessIntervalController.java

         *
         * @return the delay time in milliseconds when no URLs are available
         */
        public long getDelayMillisAtNoUrlInQueue() {
            return delayMillisAtNoUrlInQueue;
        }
    
        /**
         * Sets the delay time in milliseconds when there are no URLs in the queue.
         *
         * @param delayMillisAtNoUrlInQueue the delay time in milliseconds when no URLs are available
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsFileConfigCQ.java

            TermQueryBuilder builder = regTermQ("available", available);
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
        public void setAvailable_NotEqual(Boolean available) {
            setAvailable_NotTerm(available, null);
        }
    
        public void setAvailable_NotTerm(Boolean available) {
            setAvailable_NotTerm(available, null);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 165.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/pac/PacDataInputStream.java

                this.dis.skip(mask - shift);
            }
        }
    
        /**
         * Returns the number of bytes available to read.
         * @return the number of available bytes
         * @throws IOException if an I/O error occurs
         */
        public int available() throws IOException {
            return this.dis.available();
        }
    
        /**
         * Reads bytes into the specified array.
         * @param b the byte array to read into
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/WinError.java

        int ERROR_NO_DATA = 232;
        /** No process is on the other end of the pipe */
        int ERROR_PIPE_NOT_CONNECTED = 233;
        /** More data is available */
        int ERROR_MORE_DATA = 234;
        /** The list of servers for this workgroup is not currently available */
        int ERROR_NO_BROWSER_SERVERS_FOUND = 6118;
    
        /** Array of Windows error codes */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

        }
    
        /**
         * Gets the array of available searchers based on configuration.
         * Filters the searchers array to include only those specified in the available searcher name set.
         * If no specific searchers are configured, returns all searchers.
         *
         * @return array of available RankFusionSearcher instances
         */
        protected RankFusionSearcher[] getAvailableSearchers() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb1/trans/TransPeekNamedPipeResponseTest.java

        @DisplayName("readParametersWireFormat should handle various available values")
        void testReadParametersWireFormatWithVariousAvailableValues(int available) {
            // Arrange
            byte[] buffer = new byte[10];
            int bufferIndex = 0;
    
            SMBUtil.writeInt2(available, buffer, bufferIndex);
            SMBUtil.writeInt2(0, buffer, bufferIndex + 2);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/smb1/NtStatus.java

        int NT_STATUS_NONE_MAPPED = 0xC0000073;
        /** The security ID structure is invalid */
        int NT_STATUS_INVALID_SID = 0xC0000078;
        /** The requested pipe instance is not available */
        int NT_STATUS_INSTANCE_NOT_AVAILABLE = 0xC00000ab;
        /** The pipe is not available */
        int NT_STATUS_PIPE_NOT_AVAILABLE = 0xC00000ac;
        /** The pipe state is invalid for the requested operation */
        int NT_STATUS_INVALID_PIPE_STATE = 0xC00000ad;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 13.2K bytes
    - Viewed (0)
Back to top