- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 70 for fragments (0.06 sec)
-
okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketReader.kt
if (!isControlFrame) { break } readControlFrame() } } /** * Reads a message body into across one or more frames. Control frames that occur between * fragments will be processed. If the message payload is masked this will unmask as it's being * processed. */ @Throws(IOException::class) private fun readMessage() { while (true) {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 9.8K bytes - Viewed (0) -
gradlew
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' # Collect all arguments for the java command: # * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, # and any embedded shellness will be escaped. # * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be # treated as '${Hostname}' itself on the command line.
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Dec 24 09:00:26 UTC 2023 - 8.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ACE.java
sb.append(' '); } } /** * Return a string represeting this ACE. * <p> * Note: This function should probably be changed to return SDDL * fragments but currently it does not. */ public String toString() { int count, i; String str; StringBuffer sb = new StringBuffer(); sb.append( isAllow() ? "Allow " : "Deny " );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 7.2K bytes - Viewed (0) -
docs/changelogs/changelog_2x.md
behavior is consistent with Firefox and Chrome. * Fix: Allow a body in `OPTIONS` requests. * Fix: Don't percent-encode non-ASCII characters in URL fragments. * Fix: Handle null fragments. * Fix: Don’t crash on interceptors that throw `IOException` before a connection is attempted. * New: Support [WebDAV][webdav] HTTP methods. * New: Buffer WebSocket frames for better performance.
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 26.6K bytes - Viewed (0) -
common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto
// a URL. You may use the path to pass an arbitrary string to the // webhook, for example, a cluster identifier. // // Attempting to use a user or basic auth e.g. "user:password@" is not // allowed. Fragments ("#...") and query parameters ("?...") are not // allowed, either. // // +optional optional string url = 3; // `service` is a reference to the service for this webhook. Either
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 22.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
/* * Send multiple fragments */ do { doSend0(req); } while ( req.hasMoreElements() && req.nextElement() != null ); /* * Receive multiple fragments */ synchronized ( resp ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0) -
src/archive/tar/writer.go
endPos := sw.pos + int64(len(b)) for endPos > sw.pos && err == nil { var nf int // Bytes written in fragment dataStart, dataEnd := sw.sp[0].Offset, sw.sp[0].endOffset() if sw.pos < dataStart { // In a hole fragment bf := b[:min(int64(len(b)), dataStart-sw.pos)] nf, err = zeroWriter{}.Write(bf) } else { // In a data fragment bf := b[:min(int64(len(b)), dataEnd-sw.pos)] nf, err = sw.fw.Write(bf) } b = b[nf:]
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 02 14:22:59 UTC 2024 - 19.6K bytes - Viewed (0) -
src/main/resources/fess_config.properties
query.highlight.force.source=false query.highlight.fragmenter=span query.highlight.fragment.offset=-1 query.highlight.no.match.size=0 query.highlight.order=score query.highlight.phrase.limit=256 query.highlight.content.description.fields=hl_content,digest query.highlight.boundary.position.detect=true query.highlight.text.fragment.type=query query.highlight.text.fragment.size=3 query.highlight.text.fragment.prefix.length=5
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Tue Oct 01 14:13:38 UTC 2024 - 30.9K bytes - Viewed (0) -
common-protos/k8s.io/api/admissionregistration/v1/generated.proto
// a URL. You may use the path to pass an arbitrary string to the // webhook, for example, a cluster identifier. // // Attempting to use a user or basic auth e.g. "user:password@" is not // allowed. Fragments ("#...") and query parameters ("?...") are not // allowed, either. // // +optional optional string url = 3; // `service` is a reference to the service for this webhook. Either
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 24.4K bytes - Viewed (0) -
src/main/java/jcifs/SmbResource.java
* resolved. If the names cannot be resolved (e.g. due to temporary * network failure), the said methods will return default values (usually * <tt>S-X-Y-Z</tt> strings of fragments of). * <p> * Alternatively <tt>getSecurity(true)</tt> may be used to resolve all * SIDs together and detect network failures. * * @return array of ACEs * @throws IOException
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Dec 20 14:09:34 UTC 2020 - 26K bytes - Viewed (1)