- Sort Score
- Result 10 results
- Languages All
Results 881 - 890 of 2,800 for int3 (0.02 sec)
-
src/main/java/jcifs/netbios/SessionRequestPacket.java
} @Override int writeTrailerWireFormat ( byte[] dst, int dstIndex ) { int start = dstIndex; dstIndex += this.calledName.writeWireFormat(dst, dstIndex); dstIndex += this.callingName.writeWireFormat(dst, dstIndex); return dstIndex - start; } @Override int readTrailerWireFormat ( InputStream in, byte[] buffer, int bufferIndex ) throws IOException {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbResourceLocatorImpl.java
private String canon; // Initially null; set by getUncPath; dir must end with '/' private String share; // Can be null private Address[] addresses; private int addressIndex; private int type; private CIFSContext ctx; /** * * @param ctx * @param u */ public SmbResourceLocatorImpl ( CIFSContext ctx, URL u ) { this.ctx = ctx;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jul 20 08:24:53 UTC 2019 - 23.9K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractor.java
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 10.8K bytes - Viewed (0) -
src/test/java/jcifs/tests/SidTest.java
} @Test public void resolveWellKnownUsers () throws IOException { SID domsid = new SID(getRequiredProperty(TestProperties.TEST_DOMAIN_SID)); int rids[] = new int[] { 500, 501 }; for ( int rid : rids ) { SID sid = new SID(domsid, rid); sid.resolve(getRequiredProperty(TestProperties.TEST_DOMAIN_DC), withTestNTLMCredentials(getContext()));
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SecurityBlob.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/SMBSigningDigest.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Aug 05 09:45:59 UTC 2018 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/UnicodeString.java
*/ public UnicodeString ( String str, boolean zterm ) { this.zterm = zterm; int len = str.length(); int zt = zterm ? 1 : 0; this.length = this.maximum_length = (short) ( ( len + zt ) * 2 ); this.buffer = new short[len + zt]; int i; for ( i = 0; i < len; i++ ) { this.buffer[ i ] = (short) str.charAt(i); } if ( zterm ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 2.5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/plugin/ReportConfigurationExpander.java
/** * Handles expansion of general report plugin configuration into individual report sets. * * @deprecated use {@link org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") public interface ReportConfigurationExpander { /** * Merges values from general report plugin configuration into the individual reports sets of the given model. *
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/testing/EqualsTesterTest.java
} @Override public int hashCode() { int result = 17; result = 37 * result + aspect1; result = 37 * result + aspect2; return result; } } /** Test class with invalid hashCode method. */ private static class InvalidHashCodeObject { private int aspect1; private int aspect2; InvalidHashCodeObject(int aspect1, int aspect2) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 15:00:32 UTC 2024 - 12.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsbhv/BsDataConfigBhv.java
doDelete(entity, null); } public int queryDelete(CBCall<DataConfigCB> cbLambda) { return doQueryDelete(createCB(cbLambda), null); } public int[] batchInsert(List<DataConfig> list) { return batchInsert(list, null, null); } public int[] batchInsert(List<DataConfig> list, RequestOptionCall<BulkRequestBuilder> call) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 10.2K bytes - Viewed (0)