- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 25 for Data1A (0.24 seconds)
-
src/main/java/jcifs/internal/smb2/persistent/HandleGuid.java
// Extract GUID components from UUID int data1 = (int) (mostSig >>> 32); // first 4 bytes short data2 = (short) (mostSig >>> 16); // next 2 bytes short data3 = (short) mostSig; // next 2 bytes // Write in little-endian format as specified by MS-SMB2 bb.putInt(data1); // data1 (4 bytes, little-endian) bb.putShort(data2); // data2 (2 bytes, little-endian)Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 02:21:31 GMT 2025 - 4.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/indexer/DocBoostMatcherTest.java
docBoostMatcher.setMatchExpression("data1 != null && data1.matches(\"test\")"); final Map<String, Object> map = new HashMap<String, Object>(); map.put("data1", "test"); assertTrue(docBoostMatcher.match(map)); map.put("data1", "aaa test bbb"); assertFalse(docBoostMatcher.match(map)); map.put("data1", "hoge"); assertFalse(docBoostMatcher.match(map));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 06:03:38 GMT 2026 - 8.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/CrawlJobTest.java
crawlJob.dataConfigIds(new String[] { "data1", "data2", "data3" }); String result = crawlJob.execute(); assertNotNull(result); assertTrue(result.contains("Web Config Id: web1 web2")); assertTrue(result.contains("File Config Id: file1")); assertTrue(result.contains("Data Config Id: data1 data2 data3")); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 25K bytes - Click Count (0) -
docs/orchestration/docker-compose/docker-compose.yaml
services: minio1: <<: *minio-common hostname: minio1 volumes: - data1-1:/data1 - data1-2:/data2 minio2: <<: *minio-common hostname: minio2 volumes: - data2-1:/data1 - data2-2:/data2 minio3: <<: *minio-common hostname: minio3 volumes: - data3-1:/data1 - data3-2:/data2 minio4: <<: *minio-common hostname: minio4Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 07 05:14:10 GMT 2025 - 1.5K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/JdkFutureAdaptersTest.java
*/ @NullUnmarked @GwtIncompatible @J2ktIncompatible public class JdkFutureAdaptersTest extends TestCase { private static final String DATA1 = "data"; public void testListenInPoolThreadReturnsSameFuture() throws Exception { ListenableFuture<String> listenableFuture = immediateFuture(DATA1); assertThat(listenInPoolThread(listenableFuture)).isSameInstanceAs(listenableFuture); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 10K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/exec/CrawlerTest.java
Crawler.Options options = new Crawler.Options(); options.dataConfigIds = "data1,data2,data3,data4"; List<String> result = options.getDataConfigIdList(); assertNotNull(result); assertEquals(4, result.size()); assertTrue(result.contains("data1")); assertTrue(result.contains("data2")); assertTrue(result.contains("data3"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 30.8K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/JdkFutureAdaptersTest.java
*/ @NullUnmarked @GwtIncompatible @J2ktIncompatible public class JdkFutureAdaptersTest extends TestCase { private static final String DATA1 = "data"; public void testListenInPoolThreadReturnsSameFuture() throws Exception { ListenableFuture<String> listenableFuture = immediateFuture(DATA1); assertThat(listenInPoolThread(listenableFuture)).isSameInstanceAs(listenableFuture); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 10K bytes - Click Count (0) -
src/test/java/jcifs/internal/dfs/DfsReferralDataImplTest.java
@DisplayName("Should be equal for same values") void testEquals() { assertEquals(data1, data2); assertEquals(data2, data1); } @Test @DisplayName("Should be equal to itself") void testEqualsSelf() { assertEquals(data1, data1); } @Test @DisplayName("Should have same hashCode for equal objects")Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 30.6K bytes - Click Count (0) -
src/test/java/jcifs/smb1/util/HexdumpTest.java
byte[] data1 = { 0x00, 0x01, 0x02, 0x03 }; assertEquals("00", Hexdump.toHexString(data1, 0, 2)); // 2 chars = 1 byte assertEquals("000", Hexdump.toHexString(data1, 0, 3)); // 3 chars = 1.5 bytes (rounds up to 2) assertEquals("0001", Hexdump.toHexString(data1, 0, 4)); // 4 chars = 2 bytes assertEquals("000102", Hexdump.toHexString(data1, 0, 6)); // 6 chars = 3 bytes
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.4K bytes - Click Count (0) -
src/test/java/jcifs/smb1/util/HMACT64Test.java
// Test that different data produces different results 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();Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 10.1K bytes - Click Count (0)