- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for isPrintable (0.04 sec)
-
logger/sql.go
"strconv" "strings" "time" "unicode" "gorm.io/gorm/utils" ) const ( tmFmtWithMS = "2006-01-02 15:04:05.999" tmFmtZero = "0000-00-00 00:00:00" nullStr = "NULL" ) func isPrintable(s string) bool { for _, r := range s { if !unicode.IsPrint(r) { return false } } return true } // A list of Go types that should be converted to SQL primitives
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Thu Mar 21 08:00:02 UTC 2024 - 5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/PropertyDesc.java
*/ boolean isReadable(); /** * Returns whether the property value can be set. * * @return whether the property value can be set */ boolean isWritable(); /** * Returns the public field recognized as a property. * * @return the public field recognized as a property */ Field getField(); /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4.3K bytes - Viewed (0)