- Sort Score
- Num 10 results
- Language All
Results 491 - 500 of 2,508 for sata (0.02 seconds)
-
android/guava-tests/test/com/google/common/io/SourceSinkFactories.java
return new ByteSourceFactory() { @Override public ByteSource createSource(byte[] data) throws IOException { return factory.createSource(new String(data, UTF_8)).asByteSource(UTF_8); } @Override public byte[] getExpected(byte[] data) { return factory.getExpected(new String(data, UTF_8)).getBytes(UTF_8); } @Override
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Jul 16 17:42:14 GMT 2025 - 12.7K bytes - Click Count (0) -
docs/tr/docs/tutorial/server-sent-events.md
SSE, HTTP üzerinden sunucudan istemciye veri akışı için bir standarttır. Her olay, aralarında boş satırlar bulunan ve `data`, `event`, `id` ve `retry` gibi "alanlar" içeren küçük bir metin bloğudur. Şuna benzer: ``` data: {"name": "Portal Gun", "price": 999.99} data: {"name": "Plumbus", "price": 32.99} ```
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:51:35 GMT 2026 - 5.1K bytes - Click Count (0) -
docs/tr/docs/tutorial/request-files.md
`UploadFile` şu `async` method’lara sahiptir. Bunların hepsi altta ilgili dosya method’larını çağırır (dahili `SpooledTemporaryFile` kullanarak). * `write(data)`: Dosyaya `data` (`str` veya `bytes`) yazar. * `read(size)`: Dosyadan `size` (`int`) kadar byte/karakter okur. * `seek(offset)`: Dosyada `offset` (`int`) byte pozisyonuna gider. * Örn. `await myfile.seek(0)` dosyanın başına gider.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 7.5K bytes - Click Count (0) -
src/main/java/org/codelibs/core/misc/Base64Util.java
/** * Do not instantiate. */ protected Base64Util() { } /** * Encodes data in Base64. * <p> * This method uses {@link java.util.Base64.Encoder} for encoding. * </p> * * @param inData * The data to encode * @return The encoded data, or an empty string if the input is null or empty */ public static String encode(final byte[] inData) {Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat Nov 22 11:21:59 GMT 2025 - 2.1K bytes - Click Count (0) -
cmd/erasure-healing_test.go
object := "object" data := make([]byte, 1*humanize.MiByte) length := int64(len(data)) _, err = rand.Read(data) if err != nil { t.Fatal(err) } oi1, err := obj.PutObject(ctx, bucket, object, mustGetPutObjReader(t, bytes.NewReader(data), length, "", ""), ObjectOptions{}) if err != nil { t.Fatal(err) } // 2nd version. _, _ = rand.Read(data)
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 48.5K bytes - Click Count (0) -
internal/dsync/dsync_test.go
b.SetParallelism(4) b.RunParallel(func(pb *testing.PB) { c := make(chan bool) var data [4 << 10]uint64 for i := 0; pb.Next(); i++ { if i%4 == 0 { m.Lock(id, source) acc0 -= 100 acc1 += 100 m.Unlock(b.Context()) } else { for i := 0; i < len(data); i += 4 { data[i]++ } // Elaborate way to say runtime.Gosched
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 10.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/DocumentHelper.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Mar 30 14:27:04 GMT 2026 - 17.4K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java
protected int parameterDisplacement; /** Number of data bytes being sent in this request */ protected int dataCount; /** Offset from the start of the SMB header to the data bytes */ protected int dataOffset; /** Displacement of these data bytes from the start of the total data block */ protected int dataDisplacement; /** Total number of parameter bytes to be sent */Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 17.3K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryLeaseContext.java
} @Override public int size() { // Context header: 16 bytes // Name: 4 bytes ("DLse") // Padding: 4 bytes (to align data to 8-byte boundary) // Standard lease data: 32 bytes // Directory-specific data: 20 bytes (CacheScope(4) + MaxCacheAge(8) + Flags(4) + NotificationFilter(4)) return 16 + 4 + 4 + 32 + 20; } @OverrideCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 23 02:21:31 GMT 2025 - 9.4K bytes - Click Count (0) -
docs/en/docs/tutorial/sql-databases.md
* `id` * `name` * `age` {* ../../docs_src/sql_databases/tutorial002_an_py310.py ln[7:18] hl[17:18] *} #### `HeroCreate` - the *data model* to create a hero { #herocreate-the-data-model-to-create-a-hero } Now we create a `HeroCreate` model, this is the one that will **validate** the data from the clients. It has the same fields as `HeroBase`, and it also has `secret_name`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Mar 07 09:29:03 GMT 2026 - 15.3K bytes - Click Count (0)