Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for sourceData (0.05 sec)

  1. 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);
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  2. 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 too
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  3. 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>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 19.4K bytes
    - Viewed (0)
  4. 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);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  5. android/pom.xml

                          https://issues.apache.org/jira/browse/MCOMPILER-174
                          (Compare what guava-gwt has to do for maven-javadoc-plugin.)
                      -->
                      <arg>-sourcepath</arg>
                      <arg>doesnotexist</arg>
                    </compilerArgs>
                  </configuration>
                </execution>
                <execution>
                  <id>default-testCompile</id>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 24.3K bytes
    - Viewed (0)
  6. pom.xml

                          https://issues.apache.org/jira/browse/MCOMPILER-174
                          (Compare what guava-gwt has to do for maven-javadoc-plugin.)
                      -->
                      <arg>-sourcepath</arg>
                      <arg>doesnotexist</arg>
                    </compilerArgs>
                  </configuration>
                </execution>
                <execution>
                  <id>default-testCompile</id>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 23.9K bytes
    - Viewed (0)
Back to top