- Sort Score
- Num 10 results
- Language All
Results 431 - 440 of 520 for 24 (0.01 seconds)
-
src/test/java/jcifs/smb1/util/HexdumpTest.java
assertEquals("0011", Hexdump.toHexString(data4, 1, 4)); // Bug: ignores srcIndex, reads from 0 assertEquals("0011", Hexdump.toHexString(data4, 2, 4)); // Bug: ignores srcIndex, reads from 0 } @Test @DisplayName("Should perform hexdump with correct formatting") void testHexdump() { // Capture output
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 11.4K bytes - Click Count (0) -
api/go1.5.txt
pkg go/types, const UntypedNil = 25 pkg go/types, const UntypedNil BasicKind pkg go/types, const UntypedRune = 21 pkg go/types, const UntypedRune BasicKind pkg go/types, const UntypedString = 24 pkg go/types, const UntypedString BasicKind pkg go/types, func AssertableTo(*Interface, Type) bool pkg go/types, func AssignableTo(Type, Type) bool pkg go/types, func Comparable(Type) bool
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Jul 30 21:14:09 GMT 2015 - 46.6K bytes - Click Count (0) -
go.mod
github.com/tklauser/numcpus v0.10.0 // indirect github.com/unrolled/secure v1.17.0 // indirect github.com/vbauerster/mpb/v8 v8.9.3 // indirect github.com/xdg/stringprep v1.0.3 // indirect github.com/yusufpapurcu/wmi v1.2.4 // indirect github.com/zeebo/errs v1.4.0 // indirect go.etcd.io/etcd/client/pkg/v3 v3.5.21 // indirect go.mongodb.org/mongo-driver v1.17.3 // indirect go.opentelemetry.io/auto/sdk v1.1.0 // indirect
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Oct 10 18:57:03 GMT 2025 - 12.2K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/nego/NegotiateContextRequestTest.java
context = new EncryptionNegotiateContext(mockConfig, ciphers); // Encode at position 200 int encoded = context.encode(buffer, 200); assertEquals(2 + 4, encoded); // count + 2 ciphers // Decode and verify EncryptionNegotiateContext decoded = new EncryptionNegotiateContext(); try { decoded.decode(buffer, 200, encoded);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 18.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
/** The key of the message: Time */ public static final String LABELS_facet_timestamp_title = "{labels.facet_timestamp_title}"; /** The key of the message: Within 24 hours */ public static final String LABELS_facet_timestamp_1day = "{labels.facet_timestamp_1day}"; /** The key of the message: Within a week */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 11:54:13 GMT 2026 - 172.6K bytes - Click Count (0) -
docs/es/docs/tutorial/dependencies/dependencies-with-yield.md
Solo el código anterior e incluyendo el `yield` statement se ejecuta antes de crear un response: {* ../../docs_src/dependencies/tutorial007_py310.py hl[2:4] *} El valor generado es lo que se inyecta en *path operations* y otras dependencias: {* ../../docs_src/dependencies/tutorial007_py310.py hl[4] *} El código posterior al `yield` statement se ejecuta después del response:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 13.3K bytes - Click Count (0) -
docs/zh/docs/tutorial/dependencies/dependencies-with-yield.md
实际上,FastAPI 在内部就是用的这两个装饰器。 /// ## 使用 `yield` 的数据库依赖项 { #a-database-dependency-with-yield } 例如,你可以用这种方式创建一个数据库会话,并在完成后将其关闭。 在创建响应之前,只会执行 `yield` 语句及其之前的代码: {* ../../docs_src/dependencies/tutorial007_py310.py hl[2:4] *} `yield` 产生的值会注入到 *路径操作* 和其他依赖项中: {* ../../docs_src/dependencies/tutorial007_py310.py hl[4] *} `yield` 语句后面的代码会在响应之后执行: {* ../../docs_src/dependencies/tutorial007_py310.py hl[5:6] *} /// tip | 提示Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 12.1K bytes - Click Count (0) -
gradle/libs.versions.toml
signature-android-apilevel21 = { module = "net.sf.androidscents.signature:android-api-level-21", version.ref = "signature-android-apilevel21" } signature-android-apilevel24 = { module = "net.sf.androidscents.signature:android-api-level-24", version.ref = "signature-android-apilevel24" } square-moshi = { module = "com.squareup.moshi:moshi", version.ref = "square-moshi" }Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Mar 31 22:01:48 GMT 2026 - 12K bytes - Click Count (0) -
README.md
Use the following commands to compile and run a standalone MinIO server from source. If you do not have a working Golang environment, please follow [How to install Golang](https://golang.org/doc/install). Minimum version required is [go1.24](https://golang.org/dl/#stable) ```sh go install github.com/minio/minio@latest ``` You can alternatively run `go build` and use the `GOOS` and `GOARCH` environment variables to control the OS and architecture target.
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Thu Feb 12 20:18:48 GMT 2026 - 8.8K bytes - Click Count (0) -
docs/debugging/inspect/export.go
// will allow to detect the exact version later. xlVersionMinor = 1 ) func init() { binary.LittleEndian.PutUint16(xlVersionCurrent[0:2], xlVersionMajor) binary.LittleEndian.PutUint16(xlVersionCurrent[2:4], xlVersionMinor) } // checkXL2V1 will check if the metadata has correct header and is a known major version. // The remaining payload and versions are returned.
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 9.2K bytes - Click Count (1)