Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for sourceData (0.42 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. futures/failureaccess/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>compile-java9</id>
                <goals>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 12 18:13:11 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  4. 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)
  5. android/guava-testlib/pom.xml

                    the base compiler settings (in the root `pom.xml`) to enable MRJAR output.
                  -->
                  <compilerArgs combine.self="override">
                    <arg>-sourcepath</arg>
                    <arg>${project.basedir}/src</arg>
                    <arg>--add-reads=com.google.common=ALL-UNNAMED</arg>
                    <arg>--add-reads=com.google.common.testlib=ALL-UNNAMED</arg>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Mar 19 17:26:38 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  6. guava-testlib/pom.xml

                    the base compiler settings (in the root `pom.xml`) to enable MRJAR output.
                  -->
                  <compilerArgs combine.self="override">
                    <arg>-sourcepath</arg>
                    <arg>${project.basedir}/src</arg>
                    <arg>--add-reads=com.google.common=ALL-UNNAMED</arg>
                    <arg>--add-reads=com.google.common.testlib=ALL-UNNAMED</arg>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Mar 19 17:26:38 UTC 2025
    - 4.9K bytes
    - Viewed (0)
  7. guava/pom.xml

                    base compile settings (in the root `pom.xml`) to enable MRJAR output.
                  -->
                  <compilerArgs combine.self="override">
                    <arg>-sourcepath</arg>
                    <arg>${project.basedir}/src</arg>
                    <arg>--add-reads=com.google.common=ALL-UNNAMED</arg>
                    <!-- https://errorprone.info/docs/installation#maven -->
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jun 06 21:05:32 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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