Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 138 for 1012 (0.09 sec)

  1. src/test/java/jcifs/internal/smb2/nego/NegotiateContextRequestTest.java

                byte[] largeBuffer = new byte[1024];
    
                int encoded = context.encode(largeBuffer, 0);
                assertEquals(2 + 200, encoded); // 2 for count + 100*2 for ciphers
    
                EncryptionNegotiateContext decoded = new EncryptionNegotiateContext();
                try {
                    int decodedSize = decoded.decode(largeBuffer, 0, encoded);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponseTest.java

            void testMismatchedValues() throws SMBProtocolDecodingException {
                // This could happen if the last chunk is smaller
                byte[] buffer = createValidCopyChunkResponse(10, // 10 chunks
                        65536, // Last chunk size (not average)
                        589824 // Total less than 10 * 65536
                );
    
                int bytesDecoded = response.decode(buffer, 0, buffer.length);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.8K bytes
    - Viewed (0)
  3. docs/em/docs/tutorial/bigger-applications.md

    ```Python hl_lines="5" title="app/main.py"
    {!../../docs_src/bigger_applications/app/main.py!}
    ```
    
    ### πŸ”Œ `APIRouter`β“‚ `users` & `items`
    
    πŸ”œ, ➑️ πŸ”Œ `router`β“‚ βšͺ️➑️ πŸ” `users` & `items`:
    
    ```Python hl_lines="10-11" title="app/main.py"
    {!../../docs_src/bigger_applications/app/main.py!}
    ```
    
    /// info
    
    `users.router` πŸ”Œ `APIRouter` πŸ”˜ πŸ“ `app/routers/users.py`.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun May 11 13:37:26 UTC 2025
    - 15.5K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/orig/view/advance.jsp

    					<la:select property="num" styleId="numSearchOption" styleClass="form-control">
    						<option value="">
    							<la:message key="labels.search_result_select_num" />
    						</option>
    						<la:option value="10">10</la:option>
    						<la:option value="20">20</la:option>
    						<la:option value="30">30</la:option>
    						<la:option value="40">40</la:option>
    						<la:option value="50">50</la:option>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  5. src/test/java/jcifs/internal/dfs/DfsReferralResponseBufferTest.java

            }
    
            @Test
            @DisplayName("Should return correct pathConsumed value")
            void testGetPathConsumed() {
                assertEquals(50, buffer.getPathConsumed()); // 100 / 2
            }
    
            @Test
            @DisplayName("Should return correct numReferrals value")
            void testGetNumReferrals() {
                assertEquals(3, buffer.getNumReferrals());
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  6. cmd/endpoint-ellipses_test.go

    			[]uint64{4, 8, 12},
    			[][]uint64{{4}, {4, 4}, {4, 4, 4}},
    			true,
    		},
    		{
    			[]string{"data{1...64}"},
    			[]uint64{64},
    			[][]uint64{{16, 16, 16, 16}},
    			true,
    		},
    		{
    			[]string{"data{1...24}"},
    			[]uint64{24},
    			[][]uint64{{12, 12}},
    			true,
    		},
    		{
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 15.1K bytes
    - Viewed (0)
  7. cmd/data-usage_test.go

    		{
    			path:   "bucket/dir1",
    			size:   342210,
    			objs:   7,
    			oSizes: sizeHistogram{0: 2, 1: 3, 2: 2},
    		},
    		{
    			path:   "bucket/",
    			size:   21000,
    			objs:   3,
    			oSizes: sizeHistogram{0: 1, 1: 2},
    		},
    		{
    			path:   "bucket/newfolder",
    			size:   5,
    			objs:   3,
    			oSizes: sizeHistogram{0: 3},
    		},
    		{
    			// Compacted into bucket/dir1
    			path:  "bucket/dir1/dira",
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb1/net/NetShareEnumResponseTest.java

            // Use reflection to call protected readString method
            Method readStringMethod = getReadStringMethod();
            String result = (String) readStringMethod.invoke(response, buffer, 10, 128, false);
    
            assertEquals(testString, result);
        }
    
        @Test
        @DisplayName("Test readString with null terminator in middle")
        void testReadStringWithNullTerminator() throws Exception {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.2K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/base/Utf8Test.java

            0x75, 0x30, 0x32, 0x30, 0x61, 0x63, 0x63, 0xc2, 0xa2, 0x64, 0x65, 0xc9, 0x8b, 0x36, 0x32);
        // Not a valid string
        assertNotWellFormed(-1, 0, -1, 0);
      }
    
      public void testShardsHaveExpectedRoundTrippables() {
        // A sanity check.
        long actual = 0;
        for (long expected : generateFourByteShardsExpectedRunnables()) {
          actual += expected;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/fess/ja/mapping.txt

    ο½› => {
    οΌ½ => ]
    } => }
    οΌΏ => _
    < => <
    > => >
    
    β…  => 1\u0020
    β…‘ => 2\u0020
    β…’ => 3\u0020
    β…£ => 4\u0020
    β…€ => 5\u0020
    β…₯ => 6\u0020
    β…¦ => 7\u0020
    β…§ => 8\u0020
    β…¨ => 9\u0020
    β…© => 10\u0020
    
    ゐ => い
    γ‚‘ => え
    γƒ° => γ‚€
    ヱ => エ
    
    ヴゑ => バ
    ヴィ => ビ
    ヴγ‚₯ => γƒ–
    ヴェ => ベ
    ヴォ => γƒœ
    
    
    Ξ– => Z
    
    亞 => 亜
    惑 => ζ‚ͺ
    θ˜† => 芦
    ι°Ί => ι―΅
    壓 => 圧
    菴 => 庡
    圍 => ε›²
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 27 02:07:47 UTC 2023
    - 12.3K bytes
    - Viewed (0)
Back to top