- Sort Score
- Num 10 results
- Language All
Results 821 - 830 of 1,540 for sata (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/SimpleIdnaMappingTable.kt
* The second element on each line is a mapping type, like `valid` or `mapped`. * * For lines that contain a mapping target, the next thing is a sequence of hex code points (like * 0031 2044 0034). * * All other data is ignored. */ fun BufferedSource.readPlainTextIdnaMappingTable(): SimpleIdnaMappingTable { val mappedTo = Buffer() val result = mutableListOf<Mapping>() while (!exhausted()) {
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 6.9K bytes - Click Count (0) -
android/guava/src/com/google/common/io/Files.java
/** * Returns a new {@link CharSource} for reading character data from the given file using the given * character set. * * @since 14.0 */ public static CharSource asCharSource(File file, Charset charset) { return asByteSource(file).asCharSource(charset); } /** * Returns a new {@link CharSink} for writing character data to the given file using the givenCreated: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Jan 05 22:13:21 GMT 2026 - 32.8K bytes - Click Count (0) -
LICENSE
this Lesser General Public License (also called "this License"). Each licensee is addressed as "you". A "library" means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables. The "Library", below, refers to any such software library or work which has been distributed under these terms. A "work based on the
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Mon Jan 18 20:25:38 GMT 2016 - 25.8K bytes - Click Count (0) -
src/main/java/org/codelibs/curl/io/ContentOutputStream.java
import java.util.logging.Logger; import org.apache.commons.io.output.DeferredFileOutputStream; /** * ContentOutputStream is a custom output stream that extends DeferredFileOutputStream. * It writes data to a temporary file once the data size exceeds a specified threshold. * * <p>This class ensures that the temporary file is deleted if it is not needed. * It uses a logger to log warnings if there are issues deleting the temporary file.</p> *
Created: Thu Apr 02 15:34:12 GMT 2026 - Last Modified: Thu Nov 20 13:34:13 GMT 2025 - 3.9K bytes - Click Count (0) -
build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/model/License.kt
* License.kt", add the raw POM name string to the [aliases] list of the matching entry, or * create a new entry if the license is genuinely new. * * ## Adding a dependency whose POM has no license data * * If the task fails with "no license data in their POM or any parent POM", add a hardcoded * entry to the `hardcodedLicenses` map in `GenerateLicenseFile.kt`. */ enum class License( val displayName: String, val url: String,
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 13 13:24:46 GMT 2026 - 3.9K bytes - Click Count (0) -
docs/zh-hant/docs/how-to/general.md
# 通用 - 操作指南 - 實用範例 { #general-how-to-recipes } 以下是文件中其他位置的指引連結,適用於一般或常見問題。 ## 篩選資料 - 安全性 { #filter-data-security } 為確保你不會回傳超出應有的資料,請參閱[教學 - 回應模型 - 回傳型別](../tutorial/response-model.md)。 ## 最佳化回應效能 - 回應模型 - 回傳型別 { #optimize-response-performance-response-model-return-type } 為了在回傳 JSON 資料時最佳化效能,請使用回傳型別或回應模型,如此 Pydantic 會在 Rust 端處理序列化為 JSON,而不經過 Python。更多內容請參閱[教學 - 回應模型 - 回傳型別](../tutorial/response-model.md)。Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:05:38 GMT 2026 - 2.6K bytes - Click Count (0) -
docs/zh/docs/tutorial/request-forms.md
# 表单数据 { #form-data } 当你需要接收表单字段而不是 JSON 时,可以使用 `Form`。 /// info 要使用表单,首先安装 [`python-multipart`](https://github.com/Kludex/python-multipart)。 请先创建并激活一个[虚拟环境](../virtual-environments.md),然后再进行安装,例如: ```console $ pip install python-multipart ``` /// ## 导入 `Form` { #import-form } 从 `fastapi` 导入 `Form`: {* ../../docs_src/request_forms/tutorial001_an_py310.py hl[3] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 2.5K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/com/SmbComBlankResponse.java
import jcifs.Configuration; import jcifs.internal.smb1.ServerMessageBlock; /** * SMB1 blank response message. * * This is a generic response message for SMB commands that don't * return specific data in their response. */ public class SmbComBlankResponse extends ServerMessageBlock { /** * Creates a new blank SMB1 response. * * @param config the CIFS configuration */
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 1.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/chat/ChatClient.java
if (docs != null) { return new ChatSearchResult(docs, data.getQueryId(), data.getRequestedTime()); } } catch (final Exception e) { logger.warn("Failed to search documents by URL: url={}", url, e); } return new ChatSearchResult(Collections.emptyList(), null, 0L); } /**
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 56.6K bytes - Click Count (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt
return HeldCertificate(keyPair, certificate) } private fun decodePkcs8( data: ByteString, keyAlgorithm: String, ): PrivateKey { try { val keyFactory = KeyFactory.getInstance(keyAlgorithm) return keyFactory.generatePrivate(PKCS8EncodedKeySpec(data.toByteArray())) } catch (e: GeneralSecurityException) {
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 21.6K bytes - Click Count (0)