Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 28 for Data2A (0.08 seconds)

  1. src/archive/tar/reader_test.go

    		{data1, 2, io.EOF},
    		{data1[:2048] + data2[:1536], 3, io.EOF},
    		{data2[:511], 0, io.ErrUnexpectedEOF},
    		{data2[:512], 1, io.ErrUnexpectedEOF},
    		{data2[:1195], 1, io.ErrUnexpectedEOF},
    		{data2[:1196], 1, io.EOF}, // Exact end of data and start of padding
    		{data2[:1200], 1, io.EOF},
    		{data2[:1535], 1, io.EOF},
    		{data2[:1536], 1, io.EOF}, // Exact end of padding
    		{data2[:1536] + trash[:1], 1, io.ErrUnexpectedEOF},
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Mon Dec 15 16:34:13 GMT 2025
    - 47.5K bytes
    - Click Count (0)
  2. src/test/java/jcifs/smb1/util/HMACT64Test.java

            byte[] data1 = "data1".getBytes();
            byte[] data2 = "data2".getBytes();
    
            HMACT64 hmac1 = new HMACT64(TEST_KEY);
            HMACT64 hmac2 = new HMACT64(TEST_KEY);
    
            hmac1.engineUpdate(data1, 0, data1.length);
            hmac2.engineUpdate(data2, 0, data2.length);
    
            byte[] result1 = hmac1.engineDigest();
            byte[] result2 = hmac2.engineDigest();
    
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 10.1K bytes
    - Click Count (0)
  3. src/test/java/jcifs/smb1/util/HexdumpTest.java

            byte[] data2 = { (byte) 0xFF, (byte) 0xFE, (byte) 0x80, 0x7F };
            assertEquals("FF", Hexdump.toHexString(data2, 0, 2)); // 2 chars = 1 byte
            assertEquals("FFF", Hexdump.toHexString(data2, 0, 3)); // 3 chars = 1.5 bytes (rounds up to 2)
            assertEquals("FFFE", Hexdump.toHexString(data2, 0, 4)); // 4 chars = 2 bytes
            assertEquals("FFFE80", Hexdump.toHexString(data2, 0, 6)); // 6 chars = 3 bytes
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 11.4K bytes
    - Click Count (0)
  4. tests/test_tutorial/test_websockets/test_tutorial003.py

        ):
            connection.send_text("Hello from 1234")
            data1 = connection.receive_text()
            assert data1 == "You wrote: Hello from 1234"
            data2 = connection_two.receive_text()
            client1_says = "Client #1234 says: Hello from 1234"
            assert data2 == client1_says
            data1 = connection.receive_text()
            assert data1 == client1_says
            connection_two.close()
            data1 = connection.receive_text()
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 21:25:59 GMT 2025
    - 1.3K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/core/misc/Base64UtilTest.java

            final byte[] data1 = "abc".getBytes();
            assertEquals("YWJj", Base64Util.encode(data1));
    
            // Test case 2: Single padding
            final byte[] data2 = "abcd".getBytes();
            assertEquals("YWJjZA==", Base64Util.encode(data2));
    
            // Test case 3: Double padding
            final byte[] data3 = "abcde".getBytes();
            assertEquals("YWJjZGU=", Base64Util.encode(data3));
    
    Created: Sat Dec 20 08:55:33 GMT 2025
    - Last Modified: Sat Nov 22 11:21:59 GMT 2025
    - 6K bytes
    - Click Count (0)
  6. src/test/java/jcifs/internal/dfs/DfsReferralDataImplTest.java

                data2 = DfsReferralDataImpl.fromReferral(mockReferral, reqPath, System.currentTimeMillis() + 10000, consumed);
            }
    
            @Test
            @DisplayName("Should be equal for same values")
            void testEquals() {
                assertEquals(data1, data2);
                assertEquals(data2, data1);
            }
    
            @Test
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 30.6K bytes
    - Click Count (0)
  7. src/test/java/jcifs/internal/smb2/create/CreateContextResponseTest.java

                // Second decode should overwrite
                response.decode(buffer2, 10, 60);
                byte[] data2 = response.getData();
    
                // Verify second decode overwrote first
                assertEquals(60, data2.length);
                assertEquals((byte) 0x22, data2[0]);
            }
        }
    
        @Nested
        @DisplayName("Integration Pattern Tests")
        class IntegrationPatternTests {
    
    Created: Sat Dec 20 13:44:44 GMT 2025
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 16.2K bytes
    - Click Count (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/processor/impl/NullResponseProcessorTest.java

            ResponseData data1 = null;
            ResponseData data2 = new ResponseData();
            ResponseData data3 = new ResponseData();
            data3.setUrl("https://example.com");
            data3.setHttpStatusCode(404);
    
            // All should complete without error and without modification
            processor.process(data1);
            processor.process(data2);
            processor.process(data3);
    
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Thu Nov 13 13:29:22 GMT 2025
    - 8.6K bytes
    - Click Count (0)
  9. docs/logging/README.md

        "X-Xss-Protection": "1; mode=block"
      },
      "tags": {
        "objectLocation": {
          "name": "hosts",
          "poolId": 1,
          "setId": 1,
          "drives": [
            "/mnt/data1",
            "/mnt/data2",
            "/mnt/data3",
            "/mnt/data4"
          ]
        }
      },
      "accessKey": "minioadmin"
    }
    ```
    
    ### Kafka Target
    
    Assuming that you already have Apache Kafka configured and running.
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 10.5K bytes
    - Click Count (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/AbstractExtractorTest.java

         */
        public void test_validateInputStream_consistentAcrossMultipleCalls() {
            final InputStream in1 = new ByteArrayInputStream("data1".getBytes());
            final InputStream in2 = new ByteArrayInputStream("data2".getBytes());
    
            // First call
            extractor.testValidateInputStream(in1);
    
            // Second call with different stream
            extractor.testValidateInputStream(in2);
    
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Mon Nov 24 03:59:47 GMT 2025
    - 8.4K bytes
    - Click Count (0)
Back to Top