- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 609 for hver (0.02 sec)
-
src/main/java/jcifs/smb/SmbPipeOutputStream.java
*/ package jcifs.smb; import jcifs.CIFSException; /** * Output stream for writing to SMB named pipes. * * This class provides a stream-based interface for writing * data to SMB named pipes over the network. * * @author mbechler */ public class SmbPipeOutputStream extends SmbFileOutputStream { private final SmbPipeHandleImpl handle; /** * @param handle * @throws SmbException
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.1K bytes - Viewed (0) -
cmd/storage-rest-common.go
) const ( storageRESTMethodHealth = "/health" storageRESTMethodAppendFile = "/afile" storageRESTMethodCreateFile = "/cfile" storageRESTMethodWriteAll = "/wall" storageRESTMethodReadVersion = "/rver" storageRESTMethodReadXL = "/rxl" storageRESTMethodReadAll = "/rall" storageRESTMethodReadFile = "/rfile" storageRESTMethodReadFileStream = "/rfilest" storageRESTMethodListDir = "/ls"
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon Aug 12 08:38:15 UTC 2024 - 2.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/idn/IdnaMappingTable.kt
else -> error("unexpected rangesIndex for $codePoint") } return true } /** * Binary search [sections] for [codePoint], looking at its top 14 bits. * * This binary searches over 4-byte entries, and so it needs to adjust binary search indices * in (by dividing by 4) and out (by multiplying by 4). */ private fun findSectionsIndex(codePoint: Int): Int {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 9K bytes - Viewed (0) -
docs/pt/docs/advanced/response-directly.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3.3K bytes - Viewed (0) -
docs/de/docs/advanced/custom-response.md
<img src="/img/tutorial/custom-response/image01.png"> ## Verfügbare Responses Hier sind einige der verfügbaren Responses. Bedenken Sie, dass Sie `Response` verwenden können, um alles andere zurückzugeben, oder sogar eine benutzerdefinierte Unterklasse zu erstellen. /// note | Technische Details
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 13.1K bytes - Viewed (0) -
api/maven-api-di/src/main/java/org/apache/maven/api/di/Qualifier.java
/** * Meta-annotation that marks other annotations as qualifier annotations. * <p> * Qualifiers are used to distinguish between multiple beans of the same type, * allowing for more precise control over which implementation should be injected. * Custom qualifier annotations should be annotated with {@code @Qualifier}. * <p> * Example of creating a custom qualifier: * <pre> * {@literal @}Qualifier
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Jan 30 23:28:59 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/Config.java
* </pre></blockquote> */ public static void registerSmbURLHandler() { String ver, pkgs; ver = System.getProperty("java.version"); if (ver.startsWith("1.1.") || ver.startsWith("1.2.")) { throw new RuntimeException("jcifs.smb1-0.7.0b4+ requires Java 1.3 or above. You are running " + ver); } pkgs = System.getProperty("java.protocol.handler.pkgs"); if (pkgs == null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 14.5K bytes - Viewed (0) -
okhttp-dnsoverhttps/src/main/kotlin/okhttp3/dnsoverhttps/DnsOverHttps.kt
/** * [DNS over HTTPS implementation][doh_spec]. * * > A DNS API client encodes a single DNS query into an HTTP request * > using either the HTTP GET or POST method and the other requirements * > of this section. The DNS API server defines the URI used by the * > request through the use of a URI Template. * * [doh_spec]: https://tools.ietf.org/html/draft-ietf-doh-dns-over-https-13 */
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat May 10 11:15:14 UTC 2025 - 8.6K bytes - Viewed (0) -
guava/src/com/google/common/collect/RangeMap.java
* Returns a view of this range map as an unmodifiable {@code Map<Range<K>, V>}. Modifications to * this range map are guaranteed to read through to the returned {@code Map}. * * <p>The returned {@code Map} iterates over entries in ascending order of the bounds of the * {@code Range} entries. * * <p>It is guaranteed that no empty ranges will be in the returned {@code Map}. */ Map<Range<K>, V> asMapOfRanges();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 7.6K bytes - Viewed (0) -
samples/compare/src/test/kotlin/okhttp3/compare/JavaHttpClientTest.kt
assertThat(recorded.headers["Content-Length"]).isEqualTo("0") } assertThat(recorded.headers["HTTP2-Settings"]).isNotNull() assertThat(recorded.headers["Upgrade"]).isEqualTo("h2c") // HTTP/2 over plaintext! assertThat(recorded.headers["User-Agent"]!!).matches(Regex("Java-http-client/.*")) }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 18 12:28:21 UTC 2025 - 2.8K bytes - Viewed (0)