Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 95 for 0x000000ff (0.04 sec)

  1. src/archive/tar/stat_unix.go

    			major := uint32((dev & 0x000fff00) >> 8)
    			minor := uint32((dev & 0x000000ff) >> 0)
    			minor |= uint32((dev & 0xfff00000) >> 12)
    			h.Devmajor, h.Devminor = int64(major), int64(minor)
    		case "openbsd":
    			// Copied from golang.org/x/sys/unix/dev_openbsd.go.
    			major := uint32((dev & 0x0000ff00) >> 8)
    			minor := uint32((dev & 0x000000ff) >> 0)
    			minor |= uint32((dev & 0xffff0000) >> 8)
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/witness/WitnessNotificationTest.java

        }
    
        @Test
        void testResourceStateConstants() {
            assertEquals(0x00000000, WitnessNotification.WITNESS_RESOURCE_STATE_UNKNOWN);
            assertEquals(0x00000001, WitnessNotification.WITNESS_RESOURCE_STATE_AVAILABLE);
            assertEquals(0x000000FF, WitnessNotification.WITNESS_RESOURCE_STATE_UNAVAILABLE);
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequestTest.java

        void testWriteWithOffset() {
            // Given
            int offset = 200;
            byte[] buffer = new byte[512];
            request.setNotifyFlags(0x0001);
            request.setCompletionFilter(0x000000FF);
    
            // When
            int written = request.writeBytesWireFormat(buffer, offset);
    
            // Then
            assertEquals(32, written);
            assertEquals(32, SMBUtil.readInt2(buffer, offset));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.1K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/witness/WitnessNotification.java

        /** Resource state is unknown */
        public static final int WITNESS_RESOURCE_STATE_UNKNOWN = 0x00000000;
        /** Resource is available for use */
        public static final int WITNESS_RESOURCE_STATE_AVAILABLE = 0x00000001;
        /** Resource is unavailable */
        public static final int WITNESS_RESOURCE_STATE_UNAVAILABLE = 0x000000FF;
    
        /**
         * Creates a new empty witness notification.
         */
        public WitnessNotification() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 6.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/MIEName.java

                throw new IllegalArgumentException();
            }
            len = 0xff000000 & buf[i++] << 24;
            len |= 0x00ff0000 & buf[i++] << 16;
            len |= 0x0000ff00 & buf[i++] << 8;
            len |= 0x000000ff & buf[i++];
    
            // NAME
            if (buf.length < i + len) {
                throw new IllegalArgumentException();
            }
            this.name = new String(buf, i, len);
    
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  6. docs/smb3-features/06-witness-protocol-design.md

        private final int flags;
        
        // Notification flags
        public static final int WITNESS_RESOURCE_STATE_UNKNOWN = 0x00000000;
        public static final int WITNESS_RESOURCE_STATE_AVAILABLE = 0x00000001;
        public static final int WITNESS_RESOURCE_STATE_UNAVAILABLE = 0x000000FF;
        
        public WitnessNotification(WitnessEventType eventType, String resourceName) {
            this.eventType = eventType;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 42K bytes
    - Viewed (0)
  7. src/test/java/jcifs/FileNotifyInformationTest.java

                verify(mockFileNotifyInfo, times(1)).getFileName();
            }
    
            @ParameterizedTest
            @ValueSource(ints = { 0x00000001, 0x00000002, 0x00000003, 0x00000004, 0x00000005, 0x00000006, 0x00000007, 0x00000008, 0x00000009 })
            @DisplayName("Test getAction with various action values")
            void testGetActionWithVariousValues(int actionValue) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/util/DES.java

                0x00802080, 0x00802081, 0x00000081, 0x00800080, 0x00800001, 0x00802000, 0x00802081, 0x00000081, 0x00000000, 0x00000000,
                0x00802000, 0x00002080, 0x00800080, 0x00800081, 0x00000001, 0x00802001, 0x00002081, 0x00002081, 0x00000080, 0x00802081,
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 22.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/FileNotifyInformation.java

         */
        int FILE_ACTION_ADDED = 0x00000001;
        /**
         * File has been removed
         */
        int FILE_ACTION_REMOVED = 0x00000002;
        /**
         * File has been modified
         */
        int FILE_ACTION_MODIFIED = 0x00000003;
    
        /**
         * File has been renamed (old name)
         */
        int FILE_ACTION_RENAMED_OLD_NAME = 0x00000004;
    
        /**
         * File has been renamed (new name)
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  10. src/main/java/jcifs/ACE.java

        /**
         * Permission to write extended attributes
         */
        int FILE_WRITE_EA = 0x00000010; // 5
        /**
         * Permission to execute a file or traverse a directory
         */
        int FILE_EXECUTE = 0x00000020; // 6
        /**
         * Permission to delete a file or directory
         */
        int FILE_DELETE = 0x00000040; // 7
        /**
         * Permission to read file attributes
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.1K bytes
    - Viewed (0)
Back to top