- Sort Score
- Num 10 results
- Language All
Results 251 - 260 of 2,014 for data_ (0.02 seconds)
-
src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java
/** Number of active primary shards */ public int activePrimaryShards; /** Number of data nodes */ public int numberOfDataNodes; /** Total number of nodes */ public int numberOfNodes; /** Cluster name */ public String clusterName; } /** * Data transfer object representing JVM statistics. */ public static class JvmObj { /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 19.7K bytes - Click Count (0) -
cmd/hasher.go
// getSHA256Hash returns SHA-256 hash in hex encoding of given data. func getSHA256Hash(data []byte) string { return hex.EncodeToString(getSHA256Sum(data)) } // getSHA256Hash returns SHA-256 sum of given data. func getSHA256Sum(data []byte) []byte { hash := sha256.New() hash.Write(data) return hash.Sum(nil) } // getMD5Sum returns MD5 sum of given data. func getMD5Sum(data []byte) []byte { hash := md5.New() hash.Write(data)
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri May 27 13:00:19 GMT 2022 - 1.4K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Stream.kt
* * * A `SYN_RESET` frame abnormally terminates the stream. * * Both input and output streams have transmitted all data and headers. * * Note that the input stream may continue to yield data even after a stream reports itself as * not open. This is because input data is buffered. */ val isOpen: Boolean get() { withLock { if (errorCode != null) { return falseCreated: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Mon Jul 07 18:57:05 GMT 2025 - 22.4K bytes - Click Count (0) -
docs/pt/docs/advanced/json-base64-bytes.md
Se você verificar a `/docs`, verá que o campo `data` espera bytes codificados em base64: <div class="screenshot"> <img src="/img/tutorial/json-base64-bytes/image01.png"> </div> Você poderia enviar uma request assim: ```json { "description": "Some data", "data": "aGVsbG8=" } ``` /// tip | Dica `aGVsbG8=` é a codificação base64 de `hello`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:13 GMT 2026 - 2.6K bytes - Click Count (0) -
cmd/config-common.go
return errConfigNotFound } return err } func saveConfigWithOpts(ctx context.Context, store objectIO, configFile string, data []byte, opts ObjectOptions) error { hashReader, err := hash.NewReader(ctx, bytes.NewReader(data), int64(len(data)), "", getSHA256Hash(data), int64(len(data))) if err != nil { return err } _, err = store.PutObject(ctx, minioMetaBucket, configFile, NewPutObjReader(hashReader), opts)
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Mon Sep 18 17:00:54 GMT 2023 - 3.1K bytes - Click Count (0) -
tests/test_request_params/test_form/test_required_str.py
] } @pytest.mark.parametrize( "path", ["/required-str", "/model-required-str"], ) def test_required_str(path: str): client = TestClient(app) response = client.post(path, data={"p": "hello"}) assert response.status_code == 200 assert response.json() == {"p": "hello"} # ===================================================================================== # AliasCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Dec 27 18:19:10 GMT 2025 - 10.6K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/io/LittleEndianDataInputStreamTest.java
} public void testReadFully() throws IOException { DataInput in = new LittleEndianDataInputStream(new ByteArrayInputStream(data)); byte[] b = new byte[data.length]; in.readFully(b); assertEquals(Bytes.asList(data), Bytes.asList(b)); } public void testReadUnsignedByte_eof() throws IOException {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 17 19:26:39 GMT 2026 - 4.9K bytes - Click Count (0) -
src/main/webapp/js/profile.js
var button = $(event.relatedTarget); var docId = button.data("docid"); var title = button.data("title"); var url = button.data("url"); var $modal = $(this); $modal.find(".modal-body #delete-doc-title").text(title); $modal.find(".modal-body #delete-doc-url").text(url); $modal.find(".modal-footer input#docId").val(docId); });Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 21 13:12:50 GMT 2025 - 1.3K bytes - Click Count (0) -
docs/tr/docs/advanced/json-base64-bytes.md
`/docs`'a bakarsanız, `data` alanının base64 ile encode edilmiş bytes beklediğini görürsünüz: <div class="screenshot"> <img src="/img/tutorial/json-base64-bytes/image01.png"> </div> Şöyle bir request gönderebilirsiniz: ```json { "description": "Some data", "data": "aGVsbG8=" } ``` /// tip | İpucu
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:51:35 GMT 2026 - 2.6K bytes - Click Count (0) -
tests/default_value_test.go
t.Fatalf("Failed to find created data, got error: %v", err) } else if result.Name != "foo" || result.Name2 != "foo" || result.Name3 != "" || result.Age != 18 || !result.Enabled || result.Created.Format("20060102") != "20000102" { t.Fatalf("Failed to find created data with default data, got %+v", result) } type Harumph2 struct { ID int `gorm:"default:0"`
Created: Sun Apr 05 09:35:12 GMT 2026 - Last Modified: Mon Apr 08 03:29:55 GMT 2024 - 2.3K bytes - Click Count (0)