- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 5,954 for _this4 (0.04 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java
* @param option the Java tools option for this path, or {@code null} if none */ JavaPathType(JavaFileManager.Location location, String option) { this.location = location; this.option = option; } /** * Returns the unique name of this path type. * * @return the programmatic name of this enumeration value */ @Override
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jun 26 07:56:58 UTC 2025 - 15K bytes - Viewed (1) -
src/main/java/jcifs/dcerpc/UnicodeString.java
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) { this.buffer[i] = (short) 0; } } @Override public String toString() { final int len = this.length / 2 - (this.zterm ? 1 : 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/io/Smb2ReadResponse.java
bufferIndex += 4; bufferIndex += 4; // Reserved2 final int dataStart = getHeaderStart() + dataOffset; if (this.dataLength + this.outputBufferOffset > this.outputBuffer.length) { throw new SMBProtocolDecodingException("Buffer to small for read response"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/bsentity/BsUser.java
registerModifiedProperty("businessCategory"); this.businessCategory = value; } public String getCarLicense() { checkSpecifiedProperty("carLicense"); return convertEmptyToNull(carLicense); } public void setCarLicense(String value) { registerModifiedProperty("carLicense"); this.carLicense = value; } public String getCity() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 22.9K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/CurlRequest.java
* * @param proxy the proxy * @return this CurlRequest instance */ public CurlRequest proxy(final Proxy proxy) { this.proxy = proxy; return this; } /** * Sets the character encoding for the request. * * @param encoding the encoding * @return this CurlRequest instance
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 17.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessNotification.java
public WitnessNotification(WitnessEventType eventType, String resourceName) { this.eventType = eventType; this.resourceName = resourceName; this.timestamp = System.currentTimeMillis(); this.newIPAddresses = new ArrayList<>(); this.oldIPAddresses = new ArrayList<>(); this.clientAccessPoint = null; this.flags = WITNESS_RESOURCE_STATE_UNKNOWN; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 6.4K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-UtilCommon.kt
* `\u0000` or `\n`) or a non-ASCII character. Returns -1 if this string has no such characters. */ internal fun String.indexOfControlOrNonAscii(): Int { for (i in 0 until length) { val c = this[i] if (c <= '\u001f' || c >= '\u007f') { return i } } return -1 } /** Returns true if we should void putting this this header in an exception or toString(). */
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon May 05 16:01:00 UTC 2025 - 10.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryRequest.java
final int start = dstIndex; SMBUtil.writeInt2(33, dst, dstIndex); dst[dstIndex + 2] = this.fileInformationClass; dst[dstIndex + 3] = this.queryFlags; dstIndex += 4; SMBUtil.writeInt4(this.fileIndex, dst, dstIndex); dstIndex += 4; System.arraycopy(this.fileId, 0, dst, dstIndex, 16); dstIndex += 16; final int fnOffsetOffset = dstIndex;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessHeartbeatMessage.java
* @param sequenceNumber the sequence number for this heartbeat */ public WitnessHeartbeatMessage(byte[] contextHandle, long sequenceNumber) { super(WITNESS_HEARTBEAT); this.contextHandle = contextHandle != null ? contextHandle.clone() : new byte[20]; this.sequenceNumber = sequenceNumber; this.responseSequenceNumber = 0; this.heartbeatInterval = 0; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 09:06:40 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FsctlPipeWaitRequest.java
SMBUtil.writeInt8(this.timeout, dst, dstIndex); dstIndex += 8; SMBUtil.writeInt4(this.nameBytes.length, dst, dstIndex); dstIndex += 4; dst[dstIndex] = (byte) (this.timeoutSpecified ? 0x1 : 0x0); dstIndex++; dstIndex++; // Padding System.arraycopy(this.nameBytes, 0, dst, dstIndex, this.nameBytes.length); dstIndex += this.nameBytes.length;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.8K bytes - Viewed (0)