- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for IsType (0.11 sec)
-
cmd/xl-storage.go
s.drivePath = ep.Path return s, err } info, rootDrive, err := getDiskInfo(s.drivePath) if err != nil { return s, err } s.major = info.Major s.minor = info.Minor s.fsType = info.FSType if rootDrive { return s, errDriveIsRoot } // Sanitize before setting it if info.NRRequests > 0 { s.nrRequests = info.NRRequests } // We stagger listings only on HDDs.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Oct 26 09:58:27 UTC 2024 - 91.3K bytes - Viewed (0) -
cmd/storage-datatypes.go
// //msgp:tuple DiskInfo type DiskInfo struct { Total uint64 Free uint64 Used uint64 UsedInodes uint64 FreeInodes uint64 Major uint32 Minor uint32 NRRequests uint64 FSType string RootDisk bool Healing bool Scanning bool Endpoint string MountPath string ID string Rotational bool Metrics DiskMetrics
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 15:30:50 UTC 2024 - 17.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java
protected int preloadSizeForCharset = 2048; protected Pattern invalidUrlPattern = Pattern.compile("^\\s*javascript:|" // + "^\\s*mailto:|" // + "^\\s*irc:|" // + "^\\s*skype:|" // + "^\\s*about:|" + "^\\s*fscommand:|" // + "^\\s*aim:|" // + "^\\s*msnim:|" // + "^\\s*news:|" // + "^\\s*tel:|" // + "^\\s*unsaved:|" //
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Oct 24 12:16:00 UTC 2024 - 19.4K bytes - Viewed (0) -
cmd/storage-datatypes_gen.go
return } z.NRRequests, err = dc.ReadUint64() if err != nil { err = msgp.WrapError(err, "NRRequests") return } z.FSType, err = dc.ReadString() if err != nil { err = msgp.WrapError(err, "FSType") return } z.RootDisk, err = dc.ReadBool() if err != nil { err = msgp.WrapError(err, "RootDisk") return } z.Healing, err = dc.ReadBool()
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 15:30:50 UTC 2024 - 150.2K bytes - Viewed (0)