- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 162 for Ftruncate (1.71 sec)
-
src/test/java/jcifs/util/HMACT64Test.java
// Calculate expected HMACT64 result manually MessageDigest md5 = MessageDigest.getInstance("MD5"); byte[] ipad = new byte[64]; byte[] opad = new byte[64]; // HMACT64 specific: truncate key to 64 bytes if needed int keyLen = Math.min(key.length, 64); for (int i = 0; i < keyLen; i++) { ipad[i] = (byte) (key[i] ^ 0x36); opad[i] = (byte) (key[i] ^ 0x5c); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.6K bytes - Viewed (0) -
api/go1.13.txt
pkg syscall (netbsd-arm64-cgo), func Fpathconf(int, int) (int, error) pkg syscall (netbsd-arm64-cgo), func Fstat(int, *Stat_t) error pkg syscall (netbsd-arm64-cgo), func Fsync(int) error pkg syscall (netbsd-arm64-cgo), func Ftruncate(int, int64) error pkg syscall (netbsd-arm64-cgo), func Futimes(int, []Timeval) error pkg syscall (netbsd-arm64-cgo), func Getdirentries(int, []uint8, *uintptr) (int, error)
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Aug 08 18:44:16 UTC 2019 - 452.6K bytes - Viewed (0) -
api/go1.14.txt
pkg syscall (freebsd-arm64), func Fstatat(int, string, *Stat_t, int) error pkg syscall (freebsd-arm64), func Fstatfs(int, *Statfs_t) error pkg syscall (freebsd-arm64), func Fsync(int) error pkg syscall (freebsd-arm64), func Ftruncate(int, int64) error pkg syscall (freebsd-arm64), func Futimes(int, []Timeval) error pkg syscall (freebsd-arm64), func Getdirentries(int, []uint8, *uintptr) (int, error) pkg syscall (freebsd-arm64), func Getdtablesize() int
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Feb 17 20:31:46 UTC 2023 - 508.9K bytes - Viewed (0) -
api/go1.16.txt
pkg syscall (darwin-arm64), func Fstat(int, *Stat_t) error pkg syscall (darwin-arm64), func Fstatfs(int, *Statfs_t) error pkg syscall (darwin-arm64), func Fsync(int) error pkg syscall (darwin-arm64), func Ftruncate(int, int64) error pkg syscall (darwin-arm64), func Futimes(int, []Timeval) error pkg syscall (darwin-arm64), func Getdirentries(int, []uint8, *uintptr) (int, error) pkg syscall (darwin-arm64), func Getdtablesize() int
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Dec 02 16:30:41 UTC 2022 - 479.2K bytes - Viewed (0) -
docs/resiliency/resiliency-tests.sh
echo -e "${RED}"${FUNCNAME[0]}" Failed${NC}" TESTS_RUN_STATUS=$((TESTS_RUN_STATUS & 0)) return 1 fi # Truncate single part -- status still green OUTPUT=$(docker exec resiliency-minio1-1 /bin/sh -c "truncate --size=10K /data$((DATA_DRIVE))/test-bucket/initial-data/$FILE/*/part.1")
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Dec 21 04:24:45 UTC 2024 - 20.5K bytes - Viewed (0) -
utils/tests/utils.go
format := "2006-01-02T15:04:05Z07:00" if curTime.Round(time.Second).UTC().Format(format) != expect.(time.Time).Round(time.Second).UTC().Format(format) && curTime.Truncate(time.Second).UTC().Format(format) != expect.(time.Time).Truncate(time.Second).UTC().Format(format) { t.Errorf("%v: expect: %v, got %v after time round", utils.FileWithLineNum(), expect.(time.Time), curTime) }
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Fri Mar 10 09:21:56 UTC 2023 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComOpenAndX.java
if ((flags & SmbFile.O_TRUNC) == SmbFile.O_TRUNC) { // truncate the file if ((flags & SmbFile.O_CREAT) == SmbFile.O_CREAT) { // create it if necessary openFunction = OPEN_FN_TRUNC | OPEN_FN_CREATE; } else { openFunction = OPEN_FN_TRUNC; } } else // don't truncate the file if ((flags & SmbFile.O_CREAT) == SmbFile.O_CREAT) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/assemblies/extension/kibana/fess_log.ndjson
"position\":\"bottom\",\"show\":true,\"style\":{},\"scale\":{\"type\":\"linear\"},\"labels\":{\"show\":true,\"truncate\":100},\"title\":{}}],\"valueAxes\":[{\"id\":\"ValueAxis-1\",\"name\":\"LeftAxis-1\",\"type\":\"value\",\"position\":\"left\",\"show\":true,\"style\":{},\"scale\":{\"type\":\"linear\",\"mode\":\"normal\"},\"labels\":{\"show\":true,\"rotate\":0,\"filter\":false,\"truncate\":100},\"title\":{\"text\":\"Query Count\"}}],\"seriesParams\":[{\"show\":\"true\",\"type\":\"histogram\",\"m...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Aug 12 01:26:21 UTC 2019 - 18.2K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/MockHttp2Peer.kt
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 8.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndX.java
if ((flags & SmbFile.O_TRUNC) == SmbFile.O_TRUNC) { // truncate the file if ((flags & SmbFile.O_CREAT) == SmbFile.O_CREAT) { // create it if necessary createDisposition = FILE_OVERWRITE_IF; } else { createDisposition = FILE_OVERWRITE; } } else // don't truncate the file if ((flags & SmbFile.O_CREAT) == SmbFile.O_CREAT) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 6.5K bytes - Viewed (0)