Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 281 for mask (0.02 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. CHANGELOG/CHANGELOG-1.20.md

      PodSubnet validates against the corresponding cluster "--node-cidr-mask-size" of the kube-controller-manager, it fail if the values are not compatible.
      kubeadm no longer sets the node-mask automatically on IPv6 deployments, you must check that your IPv6 service subnet mask is compatible with the default node mask /64 or set it accordingly.
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  6. 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)
  7. src/main/java/jcifs/smb1/smb1/SID.java

            synchronized (sid_cache) {
                try {
                    handle = DcerpcHandle.getHandle("ncacn_np:" + server + "[\\PIPE\\lsarpc]", auth);
                    // NetApp doesn't like the 'generic' access mask values
                    policyHandle = new LsaPolicyHandle(handle, null, 0x00000001);
                    rpc = new MsrpcQueryInformationPolicy(policyHandle, (short) lsarpc.POLICY_INFO_ACCOUNT_DOMAIN, info);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 31.5K bytes
    - Viewed (0)
  8. src/main/webapp/css/bootstrap.min.css

    w 2s ease-in-out infinite}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;animation:placeholder-wave 2s linear infinite}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.text-bg-primary{color:...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jan 12 06:14:02 UTC 2025
    - 227.5K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * <p>This must be a (2^n)-1 as it is used as a mask.
       */
      static final int DRAIN_THRESHOLD = 0x3F;
    
      /**
       * Maximum number of entries to be drained in a single cleanup run. This applies independently to
       * the cleanup queue and both reference queues.
       */
      // TODO(fry): empirically optimize this
      static final int DRAIN_MAX = 16;
    
      // Fields
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 90K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/SmbFile.java

     *
     * @see java.io.File
     */
    
    public class SmbFile extends URLConnection implements SmbResource, SmbConstants {
        /**
         * Mask for attributes that can be retrieved from the server
         */
        protected static final int ATTR_GET_MASK = 0x7FFF;
        /**
         * Mask for attributes that can be set on the server
         */
        protected static final int ATTR_SET_MASK = 0x30A7;
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top