- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 13 for xxxabc (0.04 seconds)
-
android/guava-tests/test/com/google/common/base/StringsTest.java
assertThat(Strings.commonSuffix("xyz", "abcde")).isEqualTo(""); assertThat(Strings.commonSuffix("xyz", "xyzabc")).isEqualTo(""); assertThat(Strings.commonSuffix("abc", "ccccc")).isEqualTo("c"); assertThat(Strings.commonSuffix("aa", "aaaaa")).isEqualTo("aa"); assertThat(Strings.commonSuffix(new StringBuilder("xyzabc"), "xxxabc")).isEqualTo("abc"); // Identical valid surrogate pairs.
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 15:59:55 GMT 2026 - 11.4K bytes - Click Count (0) -
guava-tests/test/com/google/common/base/StringsTest.java
assertThat(Strings.commonSuffix("xyz", "abcde")).isEqualTo(""); assertThat(Strings.commonSuffix("xyz", "xyzabc")).isEqualTo(""); assertThat(Strings.commonSuffix("abc", "ccccc")).isEqualTo("c"); assertThat(Strings.commonSuffix("aa", "aaaaa")).isEqualTo("aa"); assertThat(Strings.commonSuffix(new StringBuilder("xyzabc"), "xxxabc")).isEqualTo("abc"); // Identical valid surrogate pairs.
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 15:59:55 GMT 2026 - 11.4K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java
assertEquals(0x5678, testBlock.getPid()); } @Test @DisplayName("Test UID property") void testUidProperty() { testBlock.setUid(0x9ABC); assertEquals(0x9ABC, testBlock.getUid()); } @Test @DisplayName("Test MID property") void testMidProperty() { testBlock.setMid(0xDEF0L);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 36.2K bytes - Click Count (0) -
src/test/java/jcifs/dcerpc/rpcTest.java
void testUuidTEncode() throws NdrException { // Given: A UUID with test values rpc.uuid_t uuid = new rpc.uuid_t(); uuid.time_low = 0x12345678; uuid.time_mid = (short) 0x9ABC; uuid.time_hi_and_version = (short) 0xDEF0; uuid.clock_seq_hi_and_reserved = (byte) 0x11; uuid.clock_seq_low = (byte) 0x22;
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 20.5K bytes - Click Count (0) -
src/archive/tar/reader_test.go
tests: []testFnc{ testRead{100, "\x00abc\x00\x00", errMissData}, }, }, { maker: makeSparse{makeReg{"abc", 8}, sparseDatas{{1, 3}, {6, 5}}, 15}, tests: []testFnc{ testRead{100, "\x00abc\x00\x00", io.ErrUnexpectedEOF}, }, }, { maker: makeSparse{makeReg{"abcde", 5}, sparseDatas{{1, 3}, {6, 5}}, 15}, tests: []testFnc{ testRead{100, "\x00abc\x00\x00de", errMissData}, }, }, {Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Tue Dec 30 15:28:53 GMT 2025 - 47.5K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponseTest.java
buffer[offset + 2] = 0x02; // PIPE buffer[offset + 3] = 0; SMBUtil.writeInt4(0x1234, buffer, offset + 4); SMBUtil.writeInt4(0x5678, buffer, offset + 8); SMBUtil.writeInt4(0x9ABC, buffer, offset + 12); // When int bytesRead = response.readBytesWireFormat(buffer, offset); // Then assertEquals(16, bytesRead);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 19.3K bytes - Click Count (0) -
src/test/java/jcifs/smb1/smb1/Trans2QueryFSInformationTest.java
assertEquals(0, cmd.readDataWireFormat(null, 0, 0)); } @Test @DisplayName("toString includes information level in hex") void testToString() { int level = 0xABC; Trans2QueryFSInformation cmd = new Trans2QueryFSInformation(level); String str = cmd.toString(); // toString uses Hexdump.toHexString(informationLevel, 3)
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 4.5K bytes - Click Count (0) -
src/archive/tar/writer_test.go
testRemaining{5, 5}, testWrite{"abc", 3, nil}, testRemaining{2, 2}, testReadFrom{fileOps{"\x00\x00"}, 2, nil}, testRemaining{0, 0}, }, }, { maker: makeReg{5, "\x00\x00abc"}, tests: []testFnc{ testRemaining{5, 5}, testWrite{"\x00\x00", 2, nil}, testRemaining{3, 3}, testWrite{"abc", 3, nil}, testReadFrom{fileOps{"z"}, 0, ErrWriteTooLong},Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Mon Dec 15 16:34:13 GMT 2025 - 40.2K bytes - Click Count (0) -
src/bufio/scan_test.go
} } } var scanTests = []string{ "", "a", "¼", "☹", "\x81", // UTF-8 error "\uFFFD", // correctly encoded RuneError "abcdefgh", "abc def\n\t\tgh ", "abc¼☹\x81\uFFFD日本語\x82abc", } func TestScanByte(t *testing.T) { for n, test := range scanTests { buf := strings.NewReader(test) s := NewScanner(buf) s.Split(ScanBytes) var i int for i = 0; s.Scan(); i++ {Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Fri Sep 22 16:22:42 GMT 2023 - 14.3K bytes - Click Count (0) -
src/bytes/bytes_test.go
{"a☺b☻c☹d", "cx", len("a☺b☻")}, {"a☺b☻c☹d", "uvw☻xyz", len("a☺b")}, {"aRegExp*", ".(|)*+?^$[]", 7}, {dots + dots + dots, " ", -1}, {"012abcba210", "\xffb", 4}, {"012\x80bcb\x80210", "\xffb", 3}, {"0123456\xcf\x80abc", "\xcfb\x80", 10}, } var lastIndexAnyTests = []BinOpTest{ {"", "", -1}, {"", "a", -1}, {"", "abc", -1}, {"a", "", -1}, {"a", "a", 0}, {"\x80", "\xffb", 0}, {"aaa", "a", 2},Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Wed Mar 11 03:07:05 GMT 2026 - 62.9K bytes - Click Count (0)