Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 8 of 8 for 152 (0.03 seconds)

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

  1. src/main/java/jcifs/internal/smb2/ioctl/QueryNetworkInterfaceInfoResponse.java

        @Override
        public int decode(byte[] buffer, int bufferIndex, int len) {
            int start = bufferIndex;
            int end = start + len;
            interfaces.clear();
    
            while (bufferIndex < end && (bufferIndex + 152) <= end) {
                // Read Next field to determine if there are more entries
                int next = SMBUtil.readInt4(buffer, bufferIndex);
    
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 21 11:13:46 GMT 2025
    - 2.7K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/collect/ArrayListMultimapTest.java

      }
    
      public void testCreateFromIllegalSizes() {
        assertThrows(IllegalArgumentException.class, () -> ArrayListMultimap.create(15, -2));
    
        assertThrows(IllegalArgumentException.class, () -> ArrayListMultimap.create(-15, 2));
      }
    
      public void testCreateFromHashMultimap() {
        Multimap<String, Integer> original = HashMultimap.create();
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 6.6K bytes
    - Click Count (0)
  3. compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/DefaultArtifactVersionTest.java

        }
    
        @Test
        void testVersionComparing() {
            assertVersionEqual("1", "1");
            assertVersionOlder("1", "2");
            assertVersionOlder("1.5", "2");
            assertVersionOlder("1", "2.5");
            assertVersionEqual("1", "1.0");
            assertVersionEqual("1", "1.0.0");
            assertVersionOlder("1.0", "1.1");
            assertVersionOlder("1.1", "1.2");
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Sep 17 10:01:14 GMT 2025
    - 9.6K bytes
    - Click Count (0)
  4. src/main/java/jcifs/internal/smb2/multichannel/NetworkInterfaceInfo.java

         *
         * @return encoded bytes
         */
        public byte[] encode() {
            // NETWORK_INTERFACE_INFO structure per MS-SMB2 2.2.32.5.1
            // Total size: 152 bytes
            byte[] buffer = new byte[Smb2ChannelCapabilities.NETWORK_INTERFACE_INFO_SIZE];
            ByteBuffer bb = ByteBuffer.wrap(buffer).order(ByteOrder.LITTLE_ENDIAN);
    
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 21 11:13:46 GMT 2025
    - 9.8K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/core/collection/ArrayUtilTest.java

        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testToObjectArray() throws Exception {
            final Object[] a = ArrayUtil.toObjectArray(new int[] { 1, 5, 2 });
            assertArrayEquals(new Integer[] { Integer.valueOf(1), Integer.valueOf(5), Integer.valueOf(2) }, a);
        }
    
        /**
         * @throws Exception
         */
    Created: Sat Dec 20 08:55:33 GMT 2025
    - Last Modified: Fri Jun 20 13:40:57 GMT 2025
    - 10.6K bytes
    - Click Count (0)
  6. compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java

            checkVersionsHaveSameOrder("1FINAL", "1");
        }
    
        @Test
        void testVersionComparing() {
            checkVersionsOrder("1", "2");
            checkVersionsOrder("1.5", "2");
            checkVersionsOrder("1", "2.5");
            checkVersionsOrder("1.0", "1.1");
            checkVersionsOrder("1.1", "1.2");
            checkVersionsOrder("1.0.0", "1.1");
            checkVersionsOrder("1.0.1", "1.1");
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Mar 21 04:56:21 GMT 2025
    - 17.8K bytes
    - Click Count (0)
  7. docs/smb3-features/03-multi-channel-design.md

            } catch (Exception e) {
                return false;
            }
        }
        
        public byte[] encode() {
            // Encode for FSCTL_QUERY_NETWORK_INTERFACE_INFO response
            byte[] buffer = new byte[152];  // Fixed size structure
            
            // InterfaceIndex (4 bytes)
            writeInt4(buffer, 0, interfaceIndex);
            
            // Capability (4 bytes)
            writeInt4(buffer, 4, capability);
            
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Sat Aug 16 02:53:50 GMT 2025
    - 39.6K bytes
    - Click Count (0)
  8. api/go1.13.txt

    pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL1 Priority
    pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL2 = 144
    pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL2 Priority
    pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL3 = 152
    pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL3 Priority
    pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL4 = 160
    pkg log/syslog (netbsd-arm64-cgo), const LOG_LOCAL4 Priority
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Click Count (0)
Back to Top