Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 244 for Another (0.12 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/elevateword/EditForm.java

        /**
         * The version number of the elevate word configuration for optimistic locking.
         * This field is required to prevent concurrent modification conflicts
         * by ensuring the configuration hasn't been modified by another process.
         */
        @Required
        @ValidateTypeFailure
        public Long versionNo;
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/reqheader/EditForm.java

        /**
         * The version number of the request header configuration for optimistic locking.
         * This field is required to prevent concurrent modification conflicts
         * by ensuring the configuration hasn't been modified by another process.
         */
        @Required
        @ValidateTypeFailure
        public Integer versionNo;
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/SmbTreeHandle.java

         * Gets the name of the share this tree is connected to
         * @return the share we are connected to
         */
        String getConnectedShare();
    
        /**
         * Checks if this tree handle refers to the same tree as another
         * @param th the tree handle to compare with
         * @return whether the handles refer to the same tree
         */
        boolean isSameTree(SmbTreeHandle th);
    
        /**
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/smb2/lock/Smb2OplockBreakNotification.java

    import jcifs.util.Hexdump;
    
    /**
     * SMB2 Oplock Break notification message. This server-initiated message notifies the client
     * that an opportunistic lock must be broken due to conflicting access from another client.
     *
     * @author mbechler
     *
     */
    public class Smb2OplockBreakNotification extends ServerMessageBlock2Response {
    
        private byte oplockLevel;
        private byte[] fileId;
    
        /**
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/RequestData.java

                return false;
            if (getClass() != obj.getClass())
                return false;
            RequestData other = (RequestData) obj;
            return method == other.method && Objects.equals(url, other.url)
                    && Float.floatToIntBits(weight) == Float.floatToIntBits(other.weight);
        }
    
        /**
         * Returns a string representation of this object.
         * @return A string representation.
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 4K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/NtStatus.java

        /** All pipe instances are busy */
        int NT_STATUS_PIPE_BUSY = 0xC00000ae;
        /** No process is on the other end of the pipe */
        int NT_STATUS_PIPE_DISCONNECTED = 0xC00000b0;
        /** The pipe is being closed */
        int NT_STATUS_PIPE_CLOSING = 0xC00000b1;
        /** Waiting for a process to open the other end of the pipe */
        int NT_STATUS_PIPE_LISTENING = 0xC00000b3;
        /** The file that was specified is a directory */
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 13.2K bytes
    - Viewed (0)
  7. fess-crawler/src/test/resources/org/codelibs/fess/crawler/helper/robots_malformed.txt

    UsEr-AgEnT: MixedCaseBot
    DiSaLlOw: /test1/
    AlLoW: /test2/
    CrAwL-dElAy: 2
    SiTeMaP: http://example.com/sitemap.xml
    
    # Case 6: Comments in various positions
    User-agent: CommentBot # inline comment
    Disallow: /path1/ # another comment
    # Full line comment
    Allow: /path2/
    
    # Case 7: Empty lines and whitespace-only lines
    User-agent: EmptyLineBot
    
    
    Disallow: /test/
    
    Allow: /public/
    
    # Case 8: Very long user-agent
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Fri Nov 14 12:52:01 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java

            listWithNulls.add(null);
            listWithNulls.add("another");
    
            List<String> result = SuggestUtil.getAsList(listWithNulls);
            assertNotNull(result);
            assertEquals(3, result.size());
            assertEquals("valid", result.get(0));
            assertEquals(null, result.get(1));
            assertEquals("another", result.get(2));
        }
    
        @Test(expected = IllegalArgumentException.class)
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 26.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java

        have exclusive access to the file. An additional open command
        from jCIFS or another application will fail with the "file is being
        accessed by another process" error. The <code>FILE_SHARE_READ</code>,
        <code>FILE_SHARE_WRITE</code>, and <code>FILE_SHARE_DELETE</code> may be
        combined with the bitwise OR '|' to specify that other peocesses may read,
        write, and/or delete the file while the jCIFS user has the file open.
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 11K bytes
    - Viewed (0)
  10. src/main/java/jcifs/context/CIFSContextWrapper.java

    import jcifs.SmbResource;
    import jcifs.SmbTransportPool;
    import jcifs.smb.Handler;
    import jcifs.smb.SmbFile;
    import jcifs.smb.SmbNamedPipe;
    
    /**
     * A wrapper implementation of CIFSContext that delegates to another context.
     * This class allows for context decoration and customization through delegation.
     *
     * @author mbechler
     */
    public class CIFSContextWrapper implements CIFSContext {
    
        private final CIFSContext delegate;
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.9K bytes
    - Viewed (0)
Back to top