Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 161 for 15 (0.02 sec)

  1. src/test/java/jcifs/smb1/smb1/SmbComNtTransactionResponseTest.java

            writeInt4(30, buffer, bufferIndex);
            bufferIndex += 4;
            // parameterDisplacement = 0
            writeInt4(0, buffer, bufferIndex);
            bufferIndex += 4;
            // dataCount = 15
            writeInt4(15, buffer, bufferIndex);
            bufferIndex += 4;
            // dataOffset = 40
            writeInt4(40, buffer, bufferIndex);
            bufferIndex += 4;
            // dataDisplacement = 0
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/loong64enc1.s

    	BSTRINSW	$15, R4, $6, R5	// 85186f00
    	BSTRINSV	$0, R4, $0, R5	// 85008000
    	BSTRINSV	$63, R4, $0, R5	// 8500bf00
    	BSTRINSV	$15, R4, $6, R5	// 85188f00
    
    	BSTRPICKW	$0, R4, $0, R5	// 85806000
    	BSTRPICKW	$31, R4, $0, R5	// 85807f00
    	BSTRPICKW	$15, R4, $6, R5	// 85986f00
    	BSTRPICKV	$0, R4, $0, R5	// 8500c000
    	BSTRPICKV	$63, R4, $0, R5	// 8500ff00
    	BSTRPICKV	$15, R4, $6, R5	// 8518cf00
    
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Sep 04 19:24:25 UTC 2025
    - 35.5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/TreeBasedTableTest.java

        assertFalse(entrySet.remove(immutableEntry(10, 'X')));
        assertTrue(entrySet.remove(immutableEntry(20, 'X')));
        assertFalse(entrySet.remove(immutableEntry(15, 'X')));
        entrySet = row.entrySet();
        assertTrue(entrySet.remove(immutableEntry(10, 'X')));
        assertFalse(entrySet.remove(immutableEntry(20, 'X')));
        assertFalse(entrySet.remove(immutableEntry(15, 'X')));
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/RangeTest.java

            }
          };
    
      public void testCanonical() {
        assertEquals(Range.closedOpen(1, 5), Range.closed(1, 4).canonical(integers()));
        assertEquals(Range.closedOpen(1, 5), Range.open(0, 5).canonical(integers()));
        assertEquals(Range.closedOpen(1, 5), Range.closedOpen(1, 5).canonical(integers()));
        assertEquals(Range.closedOpen(1, 5), Range.openClosed(0, 4).canonical(integers()));
    
        assertEquals(
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 24.1K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/loong64error.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    TEXT errors(SB),$0
    	VSHUF4IV	$16, V1, V2	// ERROR "operand out of range 0 to 15"
    	XVSHUF4IV	$16, X1, X2	// ERROR "operand out of range 0 to 15"
    	ADDV16		$1, R4, R5	// ERROR "the constant must be a multiple of 65536."
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Sep 04 19:24:25 UTC 2025
    - 454 bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/netbios/Name.java

         *
         * @param name the NetBIOS name (will be truncated to 15 characters if longer)
         * @param hexCode the NetBIOS name type/suffix
         * @param scope the NetBIOS scope identifier (uses default if null or empty)
         */
        public Name(String name, final int hexCode, final String scope) {
            if (name.length() > 15) {
                name = name.substring(0, 15);
            }
            this.name = name.toUpperCase();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/netbios/Name.java

         * @param name the NetBIOS name (will be truncated to 15 characters if longer)
         * @param hexCode the NetBIOS name type code
         * @param scope the NetBIOS scope identifier
         */
        public Name(final Configuration cfg, String name, final int hexCode, final String scope) {
            this.config = cfg;
            if (name.length() > 15) {
                name = name.substring(0, 15);
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 8K bytes
    - Viewed (0)
  8. src/test/java/jcifs/NetbiosAddressTest.java

            assertNotNull(masterBrowser);
            assertNotNull(smbServer);
    
            // Test that they have expected lengths
            assertEquals(16, anyHosts.length());
            assertEquals(15, masterBrowser.length());
            assertEquals(15, smbServer.length());
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb1/net/NetServerEnum2ResponseTest.java

            setNumEntries(response, 1);
    
            // Create a 15-character server name (maximum for NetBIOS name)
            String serverName = "SERVERNAME12345"; // 15 characters
            String comment = "Max length name";
    
            byte[] buffer = new byte[200];
            int bufferIndex = 0;
    
            // Write server name (exactly 15 bytes)
            byte[] nameBytes = serverName.getBytes(StandardCharsets.US_ASCII);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 25.4K bytes
    - Viewed (0)
  10. docs/sts/assume-role.md

    ## API Request Parameters
    
    ### Version
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 7.2K bytes
    - Viewed (0)
Back to top