- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 11 for sourceData (0.19 seconds)
-
src/test/java/jcifs/internal/smb1/trans/TransCallNamedPipeResponseTest.java
byte[] sourceData = { 1, 2, 3, 4, 5 }; byte[] buffer = new byte[10]; System.arraycopy(sourceData, 0, buffer, 2, sourceData.length); int result = smallResponse.readDataWireFormat(buffer, 2, sourceData.length); assertEquals(sourceData.length, result); assertArrayEquals(sourceData, smallOutputBuffer); } @TestCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 8.8K bytes - Click Count (0) -
src/test/java/jcifs/dcerpc/ndr/NdrBufferTest.java
@Test void testReadOctetArray() { byte[] sourceData = { 0x10, 0x11, 0x12, 0x13, 0x14 }; System.arraycopy(sourceData, 0, buffer, 0, sourceData.length); byte[] destData = new byte[5]; ndrBuffer.readOctetArray(destData, 0, sourceData.length); assertEquals(sourceData.length, ndrBuffer.getIndex()); assertEquals(sourceData.length, ndrBuffer.getLength()); // Length is updated on read tooCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 14.3K bytes - Click Count (0) -
build-logic/src/main/kotlin/BndBuildAction.kt
builder.setProperty("project.buildpath", validClasspath.asPath) builder.setClasspath(validClasspath.files.toTypedArray()) val validSourcepath = sourcepath.filter { it.exists() } builder.setProperty("project.sourcepath", validSourcepath.asPath) builder.setSourcepath(validSourcepath.files.toTypedArray()) val builtJar = builder.build() if (!builder.isOk) {
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Thu Feb 05 09:17:33 GMT 2026 - 8.9K bytes - Click Count (0) -
futures/failureaccess/pom.xml
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Oct 02 19:27:26 GMT 2025 - 5.4K bytes - Click Count (0) -
guava-gwt/pom.xml
</sourceFileExcludes> <!-- The above exclusion doesn't actually matter unless I prevent Javadoc from autodiscovering the source in the sourcepath, which defaults to the source directory :\ Boo for -sourcepath. --> <sourcepath>doesnotexist</sourcepath>Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Jan 12 15:19:17 GMT 2026 - 18.2K bytes - Click Count (0) -
android/guava-testlib/pom.xml
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 29 17:59:17 GMT 2025 - 5K bytes - Click Count (0) -
guava-testlib/pom.xml
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Sep 29 17:59:17 GMT 2025 - 5K bytes - Click Count (0) -
android/guava/pom.xml
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Nov 17 21:36:50 GMT 2025 - 9.8K bytes - Click Count (0) -
guava/pom.xml
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Nov 17 21:36:50 GMT 2025 - 9.6K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbFile.java
String sourcePath = getUncPath(); if (sourcePath.startsWith("\\")) { sourcePath = sourcePath.substring(1); } final Smb2CreateRequest createReq = new Smb2CreateRequest(sh.getConfig(), sourcePath); createReq.setCreateDisposition(Smb2CreateRequest.FILE_OPEN);
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 103.2K bytes - Click Count (0)