- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 468 for flen (0.02 sec)
-
src/archive/zip/struct.go
case creatorUnix, creatorMacOSX: mode = unixModeToFileMode(h.ExternalAttrs >> 16) case creatorNTFS, creatorVFAT, creatorFAT: mode = msdosModeToFileMode(h.ExternalAttrs) } if len(h.Name) > 0 && h.Name[len(h.Name)-1] == '/' { mode |= fs.ModeDir } return mode } // SetMode changes the permission and mode bits for the [FileHeader]. func (h *FileHeader) SetMode(mode fs.FileMode) {
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Tue May 28 21:41:09 UTC 2024 - 12.1K bytes - Viewed (0) -
cmd/bucket-notification-handlers.go
// With newer config disallowing changing / turning off // notification targets without removing ARN in notification // configuration we won't see this problem anymore. if reflect.DeepEqual(queue.ARN, arnErr.ARN) && i < len(config.QueueList) { config.QueueList = append(config.QueueList[:i], config.QueueList[i+1:]...) } // This is a one time activity we shall do this // here and allow stale ARN to be removed. We shall
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 5.1K bytes - Viewed (0) -
utils/utils_test.go
"testing" "time" ) func TestIsInvalidDBNameChar(t *testing.T) { for _, db := range []string{"db", "dbName", "db_name", "db1", "1dbname", "db$name"} { if fields := strings.FieldsFunc(db, IsInvalidDBNameChar); len(fields) != 1 { t.Fatalf("failed to parse db name %v", db) } } } func TestCheckTruth(t *testing.T) { checkTruthTests := []struct { v string out bool }{ {"123", true},
Registered: Sun Dec 28 09:35:17 UTC 2025 - Last Modified: Fri Sep 19 01:49:06 UTC 2025 - 4.9K bytes - Viewed (0) -
cmd/dynamic-timeouts.go
for _, dur := range entries[:] { if dur == maxDuration { failures++ } else if dur > maxDur { maxDur = dur } } failPct := float64(failures) / float64(len(entries)) if failPct > dynamicTimeoutIncreaseThresholdPct { // We are hitting the timeout too often, so increase the timeout by 25% timeout := min( // Set upper cap.
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 4.5K bytes - Viewed (0) -
internal/s3select/simdj/reader_amd64_test.go
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 3.9K bytes - Viewed (0) -
internal/config/storageclass/storage-class.go
s := strings.Split(storageClassEnv, ":") // only two elements allowed in the string - "scheme" and "number of parity drives" if len(s) > 2 { return StorageClass{}, config.ErrStorageClassValue(nil).Msg("Too many sections in " + storageClassEnv) } else if len(s) < 2 { return StorageClass{}, config.ErrStorageClassValue(nil).Msg("Too few sections in " + storageClassEnv) } // only allowed scheme is "EC"
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 12.3K bytes - Viewed (0) -
api/go1.20.txt
pkg syscall (freebsd-riscv64), type RawSockaddrDatalink struct, Index uint16 #53466 pkg syscall (freebsd-riscv64), type RawSockaddrDatalink struct, Len uint8 #53466 pkg syscall (freebsd-riscv64), type RawSockaddrDatalink struct, Nlen uint8 #53466 pkg syscall (freebsd-riscv64), type RawSockaddrDatalink struct, Slen uint8 #53466 pkg syscall (freebsd-riscv64), type RawSockaddrDatalink struct, Type uint8 #53466
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Fri Feb 17 21:23:32 UTC 2023 - 602.6K bytes - Viewed (0) -
cmd/api-resources.go
errCode = ErrNone // The continuation-token cannot be empty. if val, ok := values["continuation-token"]; ok { if len(val[0]) == 0 { errCode = ErrIncorrectContinuationToken return prefix, token, startAfter, delimiter, fetchOwner, maxkeys, encodingType, errCode } } if values.Get("max-keys") != "" { var err error
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SearchHelper.java
final ByteArrayOutputStream bos = new ByteArrayOutputStream()) { final byte[] buffer = new byte[1024]; int len; while ((len = gzipIn.read(buffer)) > 0) { bos.write(buffer, 0, len); } return bos.toByteArray(); } catch (final IOException e) { throw new IORuntimeException(e); } }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 20 05:56:45 UTC 2025 - 36.3K bytes - Viewed (0) -
api/go1.13.txt
pkg syscall (netbsd-arm64), type RawSockaddrDatalink struct, Data [12]int8 pkg syscall (netbsd-arm64), type RawSockaddrDatalink struct, Family uint8 pkg syscall (netbsd-arm64), type RawSockaddrDatalink struct, Index uint16 pkg syscall (netbsd-arm64), type RawSockaddrDatalink struct, Len uint8 pkg syscall (netbsd-arm64), type RawSockaddrDatalink struct, Nlen uint8
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Aug 08 18:44:16 UTC 2019 - 452.6K bytes - Viewed (0)