| /forgerock/opendj2/ext/ant/lib/ |
| H A D | ant.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ... |
| H A D | jdeb-0.10.jar | META-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/plugin. ... |
| /forgerock/opendj-b2.6/ext/ant/lib/ |
| H A D | ant.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ... |
| H A D | jdeb-0.10.jar | META-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/plugin. ... |
| /forgerock/opendj-b2.6/ext/svnkit/ |
| H A D | sqljet.jar | META-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ... |
| /forgerock/opendj2/ext/svnkit/lib/ |
| H A D | sqljet-1.1.10.jar | META-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ... |
| /forgerock/opendj2.6.2/ext/ant/lib/ |
| H A D | ant.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ... |
| H A D | jdeb-0.10.jar | META-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/plugin. ... |
| /forgerock/opendj2.6.2/ext/svnkit/ |
| H A D | sqljet.jar | META-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ... |
| /forgerock/opendj2-hg/ext/ant/lib/ |
| H A D | ant.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ... |
| H A D | jdeb-0.10.jar | META-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/plugin. ... |
| /forgerock/opendj2-hg/ext/svnkit/lib/ |
| H A D | sqljet-1.1.10.jar | META-INF/ META-INF/MANIFEST.MF META-INF/LICENSE.txt org/ org/tmatesoft/ org/ ... |
| /forgerock/openam-v13/openam-core/src/main/java/com/iplanet/services/comm/https/ |
| H A D | ReaderWriterClear.java | 43 int numBytes = 0; 48 numBytes = in.read(buffer); 49 if (numBytes > 0) { 50 out.write(buffer, 0, numBytes); 52 } else if (numBytes == 0) {
|
| /forgerock/authenticator-android-v2/app/libs/ |
| H A D | core-2.3.0.jar | META-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ... |
| /forgerock/opendj-v3/opendj-server-legacy/ext/ant/lib/ |
| H A D | ant.jar | META-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ... |
| H A D | jdeb-0.10.jar | META-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/plugin. ... |
| /glassfish-3.1.2/web/web-ajp/src/main/java/org/apache/jk/common/ |
| H A D | MsgAjp.java | 294 * @param numBytes The number of bytes to copy. 296 public void appendBytes( byte b[], int off, int numBytes ) { 297 appendInt( numBytes ); 298 cpBytes( b, off, numBytes ); 302 private void cpBytes( byte b[], int off, int numBytes ) { 303 if( pos + numBytes >= buf.length ) { 305 pos + " data=" + numBytes ); 310 System.arraycopy( b, off, buf, pos, numBytes); 311 pos += numBytes; 312 // buf[pos + numBytes] [all...] |
| /glassfish-3.1.2/web/web-ajp/src/main/java/org/apache/jk/core/ |
| H A D | Msg.java | 119 * @param numBytes The number of bytes to copy. 121 public abstract void appendBytes( byte b[], int off, int numBytes );
|
| /glassfish-3.1.2/cluster/common/src/main/java/com/sun/enterprise/util/cluster/windows/io/ |
| H A D | WindowsRemoteFile.java | 176 int numBytes = 0; 179 while ((numBytes = bis.read(buf)) >= 0) { 180 bos.write(buf, 0, numBytes); 181 totalBytesCopied += numBytes; 267 int numBytes = 0; 270 while ((numBytes = sin.read(buf)) >= 0) { 271 sout.write(buf, 0, numBytes); 272 totalBytesCopied += numBytes;
|
| /glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/base/ |
| H A D | Sample.java | 106 public byte[] downloadBytes(final int numBytes); argument
|
| /glassfish-3.1.2/common/amx-core-impl/src/main/java/org/glassfish/admin/amx/impl/mbean/ |
| H A D | SampleImpl.java | 174 public byte[] downloadBytes(final int numBytes) { argument 175 if (numBytes < 0 || numBytes > 10 * MEGABYTE) { 176 throw new IllegalArgumentException("Illegal count: " + numBytes); 179 final byte[] bytes = new byte[numBytes];
|
| /glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/universal/security/ |
| H A D | SecurityUtils.java | 50 public static String getSecureRandomHexString(int numBytes) { argument 52 byte[] bb = new byte[numBytes];
|
| /glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/util/zip/ |
| H A D | ZipFile.java | 172 for(int numBytes = zin.read(buffer); numBytes > 0; numBytes = zin.read(buffer)) 174 os.write(buffer, 0, numBytes); 175 totalBytes += numBytes;
|
| H A D | ZipWriter.java | 258 for(int numBytes = in.read(buffer); numBytes > 0; numBytes = in.read(buffer)) 260 zipStream.write(buffer, 0, numBytes); 261 totalBytes += numBytes;
|