Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 103 for umask (0.38 sec)

  1. CHANGELOG/CHANGELOG-1.23.md

      1. When configuring a dual-stack cluster, the user must specify both `--node-cidr-mask-size-ipv4` and `--node-cidr-mask-size-ipv6` to set the per-node IP mask sizes, instead of the previous `--node-cidr-mask-size` flag.
      2. The `--node-cidr-mask-size` flag is mutually exclusive with `--node-cidr-mask-size-ipv4` and `--node-cidr-mask-size-ipv6`.
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/dtyp/SecurityDescriptorTest.java

            buffer[offset] = 0x00; // Allow ACE
            buffer[offset + 1] = 0x00; // flags
            SMBUtil.writeInt2(32, buffer, offset + 2); // size
            SMBUtil.writeInt4(0x001200A9, buffer, offset + 4); // access mask
    
            // Simple SID
            buffer[offset + 8] = 0x01; // revision
            buffer[offset + 9] = 0x01; // sub-authority count
            for (int i = 10; i < 16; i++) {
                buffer[offset + i] = 0x00;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Ascii.java

      public static final char MIN = 0;
    
      /**
       * The maximum value of an ASCII character.
       *
       * @since 9.0 (was type {@code int} before 12.0)
       */
      public static final char MAX = 127;
    
      /** A bit mask which selects the bit encoding ASCII character case. */
      private static final char CASE_MASK = 0x20;
    
      /**
       * Returns a copy of the input string in which all {@linkplain #isUpperCase(char) uppercase ASCII
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 21.7K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb2/info/Smb2QueryInfoRequestTest.java

                outputBufferLengthField.setAccessible(true);
                int actualOutputBufferLength = (int) outputBufferLengthField.get(request);
    
                // Should use minimum and apply mask
                int expectedLength = (Math.min(256, 128) - Smb2QueryInfoResponse.OVERHEAD) & ~0x7;
                assertEquals(expectedLength, actualOutputBufferLength);
    
                // Result should be aligned to 8 bytes
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 22.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java

        public static final int SMB2_FLAGS_RELATED_OPERATIONS = 0x00000004;
        /**
         * Flag indicating the message is signed.
         */
        public static final int SMB2_FLAGS_SIGNED = 0x00000008;
        /**
         * Mask for message priority bits.
         */
        public static final int SMB2_FLAGS_PRIORITY_MASK = 0x00000070;
        /**
         * Flag indicating the operation is a DFS operation.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 24K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java

         */
        public void setSmbCreateFlags(final long smbCreateFlags) {
            this.smbCreateFlags = smbCreateFlags;
        }
    
        /**
         * Set the desired access mask for the file
         * @param desiredAccess the desiredAccess to set
         */
        public void setDesiredAccess(final int desiredAccess) {
            this.desiredAccess = desiredAccess;
        }
    
        /**
    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. lib/fips140/v1.0.0.zip

    0xf3b9cac2fc632551, 0) t1, b := bits.Sub64(s[1], 0xbce6faada7179e84, b) t2, b := bits.Sub64(s[2], 0xffffffffffffffff, b) t3, b := bits.Sub64(s[3], 0xffffffff00000000, b) tMask := b - 1 // zero if subtraction underflowed s[0] ^= (t0 ^ s[0]) & tMask s[1] ^= (t1 ^ s[1]) & tMask s[2] ^= (t2 ^ s[2]) & tMask s[3] ^= (t3 ^ s[3]) & tMask return s, nil } func (s *p256OrdElement) Bytes() []byte { var out [32]byte byteorder.BEPutUint64(out[24:], s[0]) byteorder.BEPutUint64(out[16:], s[1]) byteorder.BEPutUint64(out[8:],...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
  8. src/archive/tar/reader.go

    func discard(r io.Reader, n int64) error {
    	// If possible, Seek to the last byte before the end of the data section.
    	// Do this because Seek is often lazy about reporting errors; this will mask
    	// the fact that the stream may be truncated. We can rely on the
    	// io.CopyN done shortly afterwards to trigger any IO errors.
    	var seekSkipped int64 // Number of bytes skipped via Seek
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Mar 08 01:59:14 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  9. src/test/java/jcifs/dcerpc/msrpc/samrTest.java

                // When: Encoding input
                message.encode_in(mockNdrBuffer);
    
                // Then: Should encode null referent and access mask
                verify(mockNdrBuffer).enc_ndr_referent(null, 1);
                verify(mockNdrBuffer, never()).enc_ndr_string(anyString());
                verify(mockNdrBuffer).enc_ndr_long(123);
            }
    
            @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 33.7K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb1/dcerpc/msrpc/samrTest.java

                // When: Encoding input
                message.encode_in(mockNdrBuffer);
    
                // Then: Should encode null referent and access mask
                verify(mockNdrBuffer).enc_ndr_referent(null, 1);
                verify(mockNdrBuffer, never()).enc_ndr_string(anyString());
                verify(mockNdrBuffer).enc_ndr_long(123);
            }
    
            @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 33.6K bytes
    - Viewed (0)
Back to top