- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 243 for 64 (0.02 sec)
-
src/main/java/jcifs/smb/SmbFileInputStream.java
import jcifs.internal.smb2.io.Smb2ReadRequest; import jcifs.internal.smb2.io.Smb2ReadResponse; import jcifs.util.transport.TransportException; /** * This InputStream can read bytes from a file on an SMB file server. Offsets are 64 bits. */ public class SmbFileInputStream extends InputStream { private static final Logger log = LoggerFactory.getLogger(SmbFileInputStream.class); private SmbFileHandleImpl handle; private long fp;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun May 17 08:55:14 UTC 2020 - 13.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/samr.java
public static final int ACB_PWNOTREQ = 4; public static final int ACB_TEMPDUP = 8; public static final int ACB_NORMAL = 16; public static final int ACB_MNS = 32; public static final int ACB_DOMTRUST = 64; public static final int ACB_WSTRUST = 128; public static final int ACB_SVRTRUST = 256; public static final int ACB_PWNOEXP = 512; public static final int ACB_AUTOLOCK = 1024;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:40:13 UTC 2019 - 15.1K bytes - Viewed (0) -
cmd/http-stats.go
// HTTP requests made by all clients type HTTPStats struct { s3RequestsInQueue int32 // ref: https://golang.org/pkg/sync/atomic/#pkg-note-BUG _ int32 // For 64 bits alignment s3RequestsIncoming uint64 rejectedRequestsAuth uint64 rejectedRequestsTime uint64 rejectedRequestsHeader uint64 rejectedRequestsInvalid uint64 currentS3Requests HTTPAPIStats
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 24 17:13:00 UTC 2024 - 11.4K bytes - Viewed (0) -
src/main/resources/fess_indices/fess.json
"type" : "alphanum_word", "max_token_length" : 20 }, "minhash_filter" : { "type" : "minhash", "seed" : 1, "bit" : 2, "size" : 64 }, "synonym_filter" : { "type" : "synonym_graph", "synonyms_path": "${fess.dictionary.path}synonym.txt" } }, "tokenizer": {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Aug 11 01:26:55 UTC 2022 - 39.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/HashingTest.java
HashCode hash31 = HashCode.fromInt(31); HashCode hash32 = HashCode.fromInt(32); assertEquals(hash32, Hashing.combineUnordered(ImmutableList.of(hash32))); assertEquals(HashCode.fromInt(64), Hashing.combineUnordered(ImmutableList.of(hash32, hash32))); assertEquals( HashCode.fromInt(96), Hashing.combineUnordered(ImmutableList.of(hash32, hash32, hash32))); assertEquals(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 09 17:40:09 UTC 2024 - 26.3K bytes - Viewed (0) -
internal/event/target/mysql.go
const ( mysqlTableExists = `SELECT 1 FROM %s;` // Some MySQL has a 3072 byte limit on key sizes. mysqlCreateNamespaceTable = `CREATE TABLE %s ( key_name VARCHAR(3072) NOT NULL, key_hash CHAR(64) GENERATED ALWAYS AS (SHA2(key_name, 256)) STORED NOT NULL PRIMARY KEY, value JSON) CHARACTER SET = utf8mb4 COLLATE = utf8mb4_bin ROW_FORMAT = Dynamic;`
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 23:06:30 UTC 2024 - 11.6K bytes - Viewed (0) -
api/go1.17.txt
pkg debug/elf, const SHT_MIPS_ABIFLAGS SectionType pkg encoding/csv, method (*Reader) FieldPos(int) (int, int) pkg go/build, type Context struct, ToolTags []string pkg go/parser, const SkipObjectResolution = 64 pkg go/parser, const SkipObjectResolution Mode pkg image, method (*Alpha) RGBA64At(int, int) color.RGBA64 pkg image, method (*Alpha) SetRGBA64(int, int, color.RGBA64) pkg image, method (*Alpha16) RGBA64At(int, int) color.RGBA64
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 18K bytes - Viewed (0) -
common-protos/k8s.io/api/admissionregistration/v1/generated.proto
// webhook. Match conditions filter requests that have already been matched by the rules, // namespaceSelector, and objectSelector. An empty list of matchConditions matches all requests. // There are a maximum of 64 match conditions allowed. // // The exact matching logic is (in order): // 1. If ANY matchCondition evaluates to FALSE, the webhook is skipped. // 2. If ALL matchConditions evaluate to TRUE, the webhook is called.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Mar 11 18:43:24 UTC 2024 - 24.4K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/arm64.s
VSLI $63, V7.D2, V8.D2 // e8547f6f VUSRA $8, V2.B16, V3.B16 // 4314086f VUSRA $16, V3.H4, V4.H4 // 6414102f VUSRA $32, V5.S4, V6.S4 // a614206f VUSRA $64, V7.D2, V8.D2 // e814406f VTBL V22.B16, [V28.B16, V29.B16], V11.B16 // 8b23164e VTBL V18.B8, [V17.B16, V18.B16, V19.B16], V22.B8 // 3642120e
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Jul 24 18:45:14 UTC 2024 - 95.2K bytes - Viewed (0) -
internal/jwt/parser.go
} // Specific instances for HS256, HS384, HS512 var ( SigningMethodHS256 *SigningMethodHMAC SigningMethodHS384 *SigningMethodHMAC SigningMethodHS512 *SigningMethodHMAC ) const base64BufferSize = 64 * humanize.KiByte var ( base64BufPool sync.Pool hmacSigners []*SigningMethodHMAC ) func init() { base64BufPool = sync.Pool{ New: func() interface{} { buf := make([]byte, base64BufferSize)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 17 16:45:46 UTC 2024 - 14.1K bytes - Viewed (0)