- Sort Score
- Result 10 results
- Languages All
Results 491 - 500 of 594 for minp (0.02 sec)
-
guava/src/com/google/common/collect/DiscreteDomain.java
return origin.add(BigInteger.valueOf(distance)); } @Override public long distance(BigInteger start, BigInteger end) { return end.subtract(start).max(MIN_LONG).min(MAX_LONG).longValue(); } private Object readResolve() { return INSTANCE; } @Override public String toString() { return "DiscreteDomain.bigIntegers()"; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
} else { flags2 &= 0xFFFF ^ SmbConstants.FLAGS2_SECURITY_SIGNATURES; } maxMpxCount = Math.min(maxMpxCount, server.maxMpxCount); if (maxMpxCount < 1) { maxMpxCount = 1; } snd_buf_size = Math.min(snd_buf_size, server.maxBufferSize); capabilities &= server.capabilities;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbOperationException.java
} long delay = initialDelayMs; for (int i = 1; i < attemptNumber; i++) { delay = (long) (delay * backoffMultiplier); } return Math.min(delay, maxDelayMs); } public int getMaxAttempts() { return maxAttempts; } public long getInitialDelayMs() { return initialDelayMs; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.5K bytes - Viewed (0) -
src/test/java/jcifs/util/HMACT64Test.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.6K bytes - Viewed (0) -
src/main/java/jcifs/util/SecureKeyManager.java
System.arraycopy(hash, 0, derived, 0, Math.min(length, hash.length)); // If we need more bytes, hash again with counter int counter = 1; while (derived.length > hash.length * counter) { md.update(input); md.update((byte) counter); hash = md.digest(); int copyLen = Math.min(length - (hash.length * counter), hash.length);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 21.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRpcClient.java
} // Use context handle bytes to create a unique ID StringBuilder sb = new StringBuilder("WITNESS-"); for (int i = 0; i < Math.min(contextHandle.length, 8); i++) { sb.append(String.format("%02X", contextHandle[i] & 0xFF)); } sb.append("-").append(shareName.hashCode()); return sb.toString(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 12.1K bytes - Viewed (0) -
docs/en/docs/deployment/https.md
Now, from a **developer's perspective**, here are several things to keep in mind while thinking about HTTPS: * For HTTPS, **the server** needs to **have "certificates"** generated by a **third party**. * Those certificates are actually **acquired** from the third party, not "generated".
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 19:34:08 UTC 2025 - 14.3K bytes - Viewed (0) -
docs/en/docs/advanced/custom-response.md
<img src="/img/tutorial/custom-response/image01.png"> ## Available responses { #available-responses } Here are some of the available responses. Keep in mind that you can use `Response` to return anything else, or even create a custom sub-class. /// note | Technical Details You could also use `from starlette.responses import HTMLResponse`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 12.2K bytes - Viewed (0) -
Makefile
@scp -q -r minio-release/$(GOOS)-$(GOARCH)/* ******@****.***:~/releases/server/minio/hotfixes/linux-$(GOOS)/archive @echo "Published new hotfix binaries at https://dl.min.io/server/minio/hotfixes/linux-$(GOOS)/archive/minio.$(VERSION)" docker-hotfix-push: docker-hotfix @docker push -q $(TAG) && echo "Published new container $(TAG)"
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Apr 27 00:44:22 UTC 2025 - 11.2K bytes - Viewed (0) -
src/main/resources/fess_config.properties
searchlog.request.headers= # Batch size for search log processing. searchlog.process.batch_size=100 # Minimum width for HTML images in thumbnails. thumbnail.html.image.min.width=100 # Minimum height for HTML images in thumbnails. thumbnail.html.image.min.height=100 # Maximum aspect ratio for HTML images in thumbnails. thumbnail.html.image.max.aspect.ratio=3.0 # Width of generated thumbnail images.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0)