Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 628 for flag (0.02 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. internal/config/bool-flag.go

    Anis Elleuch <******@****.***> 1649344240 +0100
    Created: 2026-04-05 19:28
    - Last Modified: 2022-04-07 15:10
    - 2.3K bytes
    - Click Count (0)
  2. src/main/java/jcifs/spnego/NegTokenInit.java

        /**
         * Checks if a specific context flag is set
         * @param flag the context flag to check
         * @return true if the flag is set, false otherwise
         */
        public boolean getContextFlag(final int flag) {
            return (getContextFlags() & flag) == flag;
        }
    
        /**
         * Sets or clears a specific context flag
         * @param flag the context flag to set or clear
    Created: 2026-04-05 00:10
    - Last Modified: 2025-08-16 01:32
    - 10.3K bytes
    - Click Count (0)
  3. src/main/java/jcifs/dcerpc/DcerpcMessage.java

         *
         * @param flag the flag to remove
         */
        public void unsetFlag(final int flag) {
            this.flags &= ~flag;
        }
    
        /**
         * Set flag
         *
         * @param flag the flag to set
         */
        public void setFlag(final int flag) {
            this.flags |= flag;
        }
    
        /**
         * Get the result of the DCERPC call.
         * @return result exception, if the call failed
         */
    Created: 2026-04-05 00:10
    - Last Modified: 2025-08-16 01:32
    - 6.3K bytes
    - Click Count (0)
  4. src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponse.java

        public static final byte SMB2_SHARE_TYPE_PRINT = 0x3;
    
        /**
         * Share flag indicating manual caching of documents.
         */
        public static final int SMB2_SHAREFLAG_MANUAL_CACHING = 0x0;
        /**
         * Share flag indicating automatic caching of documents.
         */
        public static final int SMB2_SHAREFLAG_AUTO_CACHING = 0x10;
        /**
         * Share flag indicating automatic caching of programs and documents.
         */
    Created: 2026-04-05 00:10
    - Last Modified: 2025-08-16 01:32
    - 7.8K bytes
    - Click Count (0)
  5. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        int FLAGS_OPLOCK_REQUESTED_OR_GRANTED = 0x20;
        /** Notify of modify action flag */
        int FLAGS_NOTIFY_OF_MODIFY_ACTION = 0x40;
        /** Response flag */
        int FLAGS_RESPONSE = 0x80;
    
        /** No flags2 set */
        int FLAGS2_NONE = 0x0000;
        /** Long filenames supported flag */
        int FLAGS2_LONG_FILENAMES = 0x0001;
        /** Extended attributes supported flag */
    Created: 2026-04-05 00:10
    - Last Modified: 2025-08-16 01:32
    - 10.3K bytes
    - Click Count (0)
  6. src/test/java/jcifs/ntlmssp/NtlmMessageTest.java

            assertFalse(message.getFlag(0b0100), "Flag 0b0100 should not be set.");
            assertFalse(message.getFlag(0b0001), "Flag 0b0001 should not be set.");
    
            message.setFlags(0); // No flags set
            assertFalse(message.getFlag(0b1000), "No flags should be set.");
        }
    
        @Test
        void testSetFlag() {
            // Test setting a flag
            message.setFlags(0);
    Created: 2026-04-05 00:10
    - Last Modified: 2025-08-14 05:31
    - 12.5K bytes
    - Click Count (0)
  7. internal/lock/lock_nix.go

    	return lockedOpenFile(path, flag, perm, 0)
    }
    
    // Open - Call os.OpenFile
    func Open(path string, flag int, perm os.FileMode) (*os.File, error) {
    	return os.OpenFile(path, flag, perm)
    Created: 2026-04-05 19:28
    - Last Modified: 2021-08-19 01:35
    - 2.8K bytes
    - Click Count (0)
  8. src/main/java/jcifs/internal/dtyp/SecurityInfo.java

     */
    public interface SecurityInfo extends Decodable {
    
        /**
         * Flag indicating that owner security information is requested or being set.
         */
        int OWNER_SECURITY_INFO = 0x1;
    
        /**
         * Flag indicating that group security information is requested or being set.
         */
        int GROUP_SECURITY_INFO = 0x2;
    
        /**
    Created: 2026-04-05 00:10
    - Last Modified: 2025-08-16 01:32
    - 2.2K bytes
    - Click Count (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/conn/IdnDnsResolver.java

         */
        protected String toAscii(final String host) {
            return IDN.toASCII(decode(host), flag);
        }
    
        /**
         * Sets the flag for IDN conversion.
         *
         * @param flag the flag to set
         */
        public void setFlag(final int flag) {
            this.flag = flag;
        }
    
        /**
         * Sets the encoding for URL decoding.
         *
    Created: 2026-04-12 03:50
    - Last Modified: 2025-11-06 07:24
    - 3.9K bytes
    - Click Count (0)
  10. src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponseTest.java

            for (int flag : capabilityFlags) {
                response = new Smb2TreeConnectResponse(mockConfig);
                byte[] buffer = createValidResponseBuffer(0, 0, flag, 0);
                response.readBytesWireFormat(buffer, 0);
                assertEquals(flag, response.getCapabilities());
            }
        }
    
        @Test
    Created: 2026-04-05 00:10
    - Last Modified: 2025-08-14 07:14
    - 19.3K bytes
    - Click Count (0)
Back to Top