- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 41 for CREDITS (0.05 seconds)
-
CREDITS
Harshavardhana <******@****.***> 1741843791 -0700
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Thu Mar 13 05:29:51 GMT 2025 - 1.8M bytes - Click Count (0) -
update-credits.sh
#!/usr/bin/env bash gocredits . >CREDITS echo "All community contributions are licensed under the terms of the Apache 2 license." >>CREDITS echo "----------------------------------------------------------------" >>CREDITS cat >>CREDITS <<EOF Apache License Version 2.0, January 2004 http://www.apache.org/licenses/Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 11 05:08:38 GMT 2023 - 11.4K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaCredits.java
this.creditsGranted = 0; } /** * Get initial number of credits to request * * @return initial credits */ public int getInitialCredits() { return initialCredits; } /** * Set initial credits * * @param initialCredits initial credits to request */ public void setInitialCredits(int initialCredits) {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 23 05:11:12 GMT 2025 - 2K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/Smb2CancelRequestTest.java
void testSetRequestCredits() { // Given Smb2CancelRequest request = new Smb2CancelRequest(mockConfig, 1L, 0L); int credits = 10; // When request.setRequestCredits(credits); // Then assertEquals(credits, request.getCredit(), "Credits should be set correctly"); } @Test @DisplayName("Test setTid sets tree ID") void testSetTid() {
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 9.8K bytes - Click Count (0) -
src/main/java/jcifs/util/InputValidator.java
} /** * Validates SMB credits value * * @param credits the credits value to validate * @throws IllegalArgumentException if credits value is invalid */ public static void validateCredits(int credits) { if (credits < 0) { throw new IllegalArgumentException("Credits cannot be negative: " + credits); } if (credits > MAX_CREDITS) {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 13.5K bytes - Click Count (0) -
src/main/java/jcifs/util/transport/Request.java
public interface Request extends Message { /** * Gets the number of credits this request requires. * * @return number of credits this request requires */ int getCreditCost(); /** * Sets the number of request credits. * * @param credits the number of credits to set */ void setRequestCredits(int credits); /** * Checks if this is a cancel request. *Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 1.7K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaNegotiateRequest.java
this.maxVersion = maxVersion; } /** * Get number of credits requested * * @return credits requested */ public int getCreditsRequested() { return creditsRequested; } /** * Set number of credits requested * * @param creditsRequested credits to request */ public void setCreditsRequested(int creditsRequested) {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 23 05:11:12 GMT 2025 - 4K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaNegotiateResponse.java
this.selectedVersion = selectedVersion; } /** * Get number of credits granted * * @return credits granted */ public int getCreditsGranted() { return creditsGranted; } /** * Set number of credits granted * * @param creditsGranted credits granted */ public void setCreditsGranted(int creditsGranted) {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 23 05:11:12 GMT 2025 - 4.1K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaConnection.java
} /** * Get number of available send credits * * @return available send credits */ public int getAvailableSendCredits() { return sendCredits.get(); } /** * Get number of available receive credits * * @return available receive credits */ public int getAvailableReceiveCredits() {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sun Aug 24 00:12:28 GMT 2025 - 8.2K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/rdma/SmbDirectNegotiateResponse.java
} /** * Get the number of send credits granted * * @return credits granted */ public int getCreditsGranted() { return creditsGranted; } /** * Set the number of send credits granted * * @param creditsGranted credits to grant */ public void setCreditsGranted(int creditsGranted) {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sun Aug 24 00:12:28 GMT 2025 - 9.3K bytes - Click Count (0)