- Sort Score
- Result 10 results
- Languages All
Results 11 - 14 of 14 for ParseBool (0.09 sec)
-
cmd/sftp-server.go
allowMACs = filterAlgos(arg, strings.Split(tokens[1], ","), supportedMACs) case "trusted-user-ca-key": userCaKeyFile = tokens[1] case "disable-password-auth": disablePassAuth, _ = strconv.ParseBool(tokens[1]) } } if port == 0 { port = 8022 // Default SFTP port, since no port was given. } if sshPrivateKey == "" {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 16.5K bytes - Viewed (0) -
tests/migrate_test.go
AssertEqual(t, defVal, "null") AssertEqual(t, ok, true) columnType2, err := findColumnType(tableName, "active") AssertEqual(t, err, nil) defVal, ok = columnType2.DefaultValue() bv, _ := strconv.ParseBool(defVal) AssertEqual(t, bv, false) AssertEqual(t, ok, true) // default 'null' -> 'null' session := DB.Session(&gorm.Session{Logger: Tracer{ Logger: DB.Config.Logger,
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Wed Aug 20 04:51:17 UTC 2025 - 65.2K bytes - Viewed (0) -
cmd/bucket-handlers.go
return } forceDelete := false if value := r.Header.Get(xhttp.MinIOForceDelete); value != "" { var err error forceDelete, err = strconv.ParseBool(value) if err != nil { apiErr := errorCodes.ToAPIErr(ErrInvalidRequest) apiErr.Description = err.Error() writeErrorResponse(ctx, w, apiErr, r.URL) return }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 63.9K bytes - Viewed (0) -
api/go1.txt
pkg strconv, func FormatInt(int64, int) string pkg strconv, func FormatUint(uint64, int) string pkg strconv, func IsPrint(int32) bool pkg strconv, func Itoa(int) string pkg strconv, func ParseBool(string) (bool, error) pkg strconv, func ParseFloat(string, int) (float64, error) pkg strconv, func ParseInt(string, int, int) (int64, error) pkg strconv, func ParseUint(string, int, int) (uint64, error)
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0)