Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for addFlags0 (0.05 sec)

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

            void testSplit() {
                TestServerMessageBlock2Request nextRequest = new TestServerMessageBlock2Request(mockConfig);
                nextRequest.addFlags(SMB2_FLAGS_RELATED_OPERATIONS);
                testRequest.setNext(nextRequest);
    
                CommonServerMessageBlockRequest result = testRequest.split();
    
                assertSame(nextRequest, result);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb1/ServerMessageBlock.java

        public final void setFlags2(final int fl) {
            this.flags2 = fl;
        }
    
        /**
         * Adds flags to the flags2 field using bitwise OR
         * @param fl flags to add
         */
        public final void addFlags2(final int fl) {
            this.flags2 |= fl;
        }
    
        /**
         * Removes flags from the flags2 field using bitwise AND NOT
         * @param fl flags to remove
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 38.9K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.RequestWithPath#setResolveInDfs(boolean)
         */
        @Override
        public void setResolveInDfs(final boolean resolve) {
            addFlags(SMB2_FLAGS_DFS_OPERATIONS);
            this.resolveDfs = resolve;
        }
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.internal.RequestWithPath#isResolveInDfs()
         */
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 02:21:31 UTC 2025
    - 22.9K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.23.md

    instead of `add-dir-header`). Fixing this included cleaning up flag handling in component-base/logs: that package no longer adds flags to the global flag sets. Commands which want the klog and `--log-flush-frequency` flags must explicitly call `logs.AddFlags`; the new `cli.Run` does that for commands. That helper function also covers flag normalization and printing of usage and errors in a consistent way (print usage text first if parsing failed, then the error). ([#105076](https://github.com/kubern...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
Back to top