- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 2,463 for param (0.02 sec)
-
src/main/java/jcifs/dcerpc/ndr/NdrBuffer.java
i--; } return n; } /** * Writes an octet array to the buffer. * * @param b the byte array to write * @param i the starting index in the array * @param l the number of bytes to write */ public void writeOctetArray(final byte[] b, final int i, final int l) { System.arraycopy(b, i, this.buf, this.index, l);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportInternal.java
boolean ensureConnected() throws IOException; /** * Gets DFS referrals for the specified path. * * @param ctx the CIFS context * @param name the DFS path to resolve * @param targetHost the target host name * @param targetDomain the target domain * @param rn the referral number * @return dfs referral * @throws SmbException if an SMB error occurs
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/UrlQueueService.java
* Adds a URL to the queue. * * @param sessionId The session ID. * @param url The URL. */ void add(String sessionId, String url); /** * Inserts a URL queue. * * @param urlQueue The URL queue. */ void insert(QUEUE urlQueue); /** * Deletes a URL queue. * * @param sessionId The session ID. */ void delete(String sessionId);
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 2.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResult.java
/** * Represents the result of accessing a resource. * * @param <IDTYPE> the type of the identifier for the access result */ public interface AccessResult<IDTYPE> { /** * Initializes the access result with the given response and result data. * * @param responseData the response data * @param resultData the result data */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 5.2K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java
* * @param i the index * @param newValue the new value */ public final void lazySet(int i, double newValue) { long next = doubleToRawLongBits(newValue); longs.lazySet(i, next); } /** * Atomically sets the element at position {@code i} to the given value and returns the old value. * * @param i the index * @param newValue the new value
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmUtil.java
} /** * Creates the NTLMv2 response for the supplied information. * * @param responseKeyNT the NT response key * @param serverChallenge the server challenge bytes * @param clientChallenge the client challenge bytes * @param nanos1601 the timestamp in nanoseconds since 1601 * @param avPairs the AV pairs from the Type 2 message * @return the calculated response */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/LeaseManager.java
private final String path; private volatile boolean breaking; /** * Create a new lease entry * * @param key lease key * @param path file path * @param state initial lease state */ public LeaseEntry(Smb2LeaseKey key, String path, int state) { this.leaseKey = key; this.path = path;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 18.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/score/ScoreBooster.java
scoreUpdater.addScoreBooster(this); } /** * Updates the score of documents. * @param params The parameters for the update. * @return The number of updated documents. */ protected long updateScore(final Map<String, Object> params) { return requestHandler.apply(params); } /** * Creates an update request builder. * @return The update request builder.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type3Message.java
} /** * Calculates the LMv2 response for NTLM authentication. * * @param tc the CIFS context * @param type2 the Type-2 message containing the server challenge * @param domain the domain name * @param user the username * @param password the user's password * @param clientChallenge the client challenge bytes * @return the calculated response
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 32.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/util/PublishKotlinDslPlugin.kt
requirements { requiresOs(Os.LINUX) } params { param("env.JAVA_HOME", javaHome(BuildToolBuildJvm, Os.LINUX)) param("env.GRADLE_PUBLISH_KEY", "%plugin.portal.publish.key%") param("env.GRADLE_PUBLISH_SECRET", "%plugin.portal.publish.secret%") param("env.PGP_SIGNING_KEY", "%pgpSigningKey%") param("env.PGP_SIGNING_KEY_PASSPHRASE", "%pgpSigningPassphrase%") } steps {
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Wed Feb 19 08:02:04 UTC 2025 - 1.8K bytes - Viewed (0)