- Sort Score
- Result 10 results
- Languages All
Results 361 - 370 of 615 for sata (0.02 sec)
-
ShadowDnsResolver.kt
org.robolectric.annotation.Implements L25:import org.robolectric.shadow.api.Shadow L26: L27:@Implements(DnsResolver::class) L28:class ShadowDnsResolver { L29: var responder: (Request) -> Unit = { L30: it.callback.onAnswer(listOf(), 0) L31: } L32: L33: data class Request( L34: val network: Network?, L35: val domain: String, L36: val nsType: Int, L37: val flags: Int, L38: val callback: DnsResolver.Callback<List<InetAddress>>, L39: ) L40: L41: @Implementation L42: fun query( L43: network:...github.com/square/okhttp/okhttp-android/src/tes...Mon Jan 22 20:07:09 UTC 2024 1.7K bytes -
WebSocketExtensions.kt
L55: * L56: * See [RFC 7692, 7.1][rfc_7692] for details on negotiation process. L57: * L58: * [rfc_7692]: https://tools.ietf.org/html/rfc7692#section-7.1 L59: */ L60:@IgnoreJRERequirement // As of AGP 3.4.1, D8 desugars API 24 hashCode methods. L61:data class WebSocketExtensions( L62: /** True if the agreed upon extensions includes the permessage-deflate extension. */ L63: @JvmField val perMessageDeflate: Boolean = false, L64: /** Should be a value in [8..15]. Only 15 is acceptable by OkHttp as...github.com/square/okhttp/okhttp/src/main/kotlin...Mon Jan 08 01:13:22 UTC 2024 8.1K bytes -
CharSourceTester.java
caseDesc, Method method) { L87: super(factory, string, suiteName, caseDesc, method); L88: this.expectedLines = getLines(expected); L89: } L90: L91: @Override L92: protected void setUp() throws Exception { L93: this.source = factory.createSource(data); L94: } L95: L96: public void testOpenStream() throws IOException { L97: Reader reader = source.openStream(); L98: L99: StringWriter writer = new StringWriter(); L100: char[] buf = new char[64]; L101: int read; L102: while ((read...github.com/google/guava/guava-tests/test/com/go...Tue Jul 23 14:22:54 UTC 2024 7.3K bytes -
GsaConfigParserTest.java
ComponentUtil.register(new SystemHelper(), "systemHelper"); L37: } L38: L39: public void test_parse() throws IOException { L40: GsaConfigParser parser = new GsaConfigParser(); L41: try (InputStream is = ResourceUtil.getResourceAsStream("data/gsaconfig.xml")) { L42: parser.parse(new InputSource(is)); L43: } L44: parser.getWebConfig().ifPresent(c -> { L45: logger.debug(c.toString()); L46: }).orElse(() -> fail()); L47: parser.getFileConfig().ifPresent(c...github.com/codelibs/fess/src/test/java/org/code...Thu Feb 22 01:53:18 UTC 2024 3.2K bytes -
changelog_2x.md
OkHttp now detects and warns on L55: connections that were allocated but never released, and will enforce HTTP/2 L56: stream limits. This update also fixes `Call.cancel()` to not do I/O on the L57: calling thread. L58: * Fix: Don't log gzipped data in the logging interceptor. L59: * Fix: Don't resolve DNS addresses when connecting through a SOCKS proxy. L60: * Fix: Drop the synthetic `OkHttp-Selected-Protocol` response header. L61: * Fix: Support 204 and 205 'No Content' replies in the logging...github.com/square/okhttp/docs/changelogs/change...Sun Feb 06 02:19:09 UTC 2022 26.6K bytes -
LICENSE
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE L18:FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL L19:DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR L20:SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER L21:CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, L22:OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE L23:OF THIS SOFTWARE, EVEN IF ADVISED...github.com/kubernetes/kubernetes/LICENSES/third...Thu Jul 08 11:48:19 UTC 2021 1.5K bytes -
Header.kt
L14: * limitations under the License. L15: */ L16:package okhttp3.internal.http2 L17: L18:import okio.ByteString L19:import okio.ByteString.Companion.encodeUtf8 L20: L21:/** HTTP header: the name is an ASCII string, but the value can be UTF-8. */ L22:data class Header( L23: /** Name in case-insensitive ASCII encoding. */ L24: @JvmField val name: ByteString, L25: /** Value in UTF-8 encoding. */ L26: @JvmField val value: ByteString, L27:) { L28: @JvmField val hpackSize = 32 + name.size + value.size...github.com/square/okhttp/okhttp/src/main/kotlin...Mon Jan 08 01:13:22 UTC 2024 2K bytes -
stopwords.txt
L160:quina L161:quines L162:quins L163:s'ha L164:s'han L165:sa L166:semblant L167:semblants L168:ses L169:seu L170:seus L171:seva L172:seva L173:seves L174:si L175:sobre L176:sobretot L177:sóc L178:solament L179:sols L180:son L181:són L182:sons L183:sota L184:sou L185:t'ha L186:t'han L187:t'he L188:ta L189:tal L190:també L191:tampoc L192:tan L193:tant L194:tanta L195:tantes L196:teu L197:teus L198:teva L199:teves L200:ton L201:tons L202:tot L203:tota L204:totes L205:tots L206:un L207:una L208:unes...github.com/codelibs/fess/src/main/resources/fes...Thu Jul 19 06:31:02 UTC 2018 1.3K bytes -
LICENSE
DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR L24:CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, L25:EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, L26:PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR L27:PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF L28:LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING L29:NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS L30:SOFTWARE, EVEN IF ADVISED...github.com/kubernetes/kubernetes/LICENSES/vendo...Mon Apr 22 17:54:32 UTC 2024 1.6K bytes -
Files.java
L205: L206: /** L207: * Returns a new {@link CharSource} for reading character data from the given file using the given L208: * character set. L209: * L210: * @since 14.0 L211: */ L212: public static CharSource asCharSource(File file, Charset charset) { L213: return asByteSource(file).asCharSource(charset); L214: } L215: L216: /** L217: * Returns a new {@link CharSink} for writing character data to the given file using the given L218: * character set. The given {@code modes}...github.com/google/guava/guava/src/com/google/co...Mon Jul 22 19:03:12 UTC 2024 33.1K bytes