- Sort Score
- Result 10 results
- Languages All
Results 31 - 32 of 32 for base64url (0.05 sec)
-
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
protected String normalizeCanonicalUrl(final String baseUrl, final String canonicalUrl) { try { final URL u = new URL(baseUrl); return new URL(u, canonicalUrl.startsWith(":") ? u.getProtocol() + canonicalUrl : canonicalUrl).toString(); } catch (final MalformedURLException e) { logger.warn("Invalid canonical url: {} : {}", baseUrl, canonicalUrl, e); } return null; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 13:01:38 UTC 2024 - 42.9K bytes - Viewed (0) -
cmd/erasure-multipart.go
readDirFn(pathJoin(drivePath, minioMetaMultipartBucket, shaDir), func(uploadIDDir string, typ os.FileMode) error { uploadIDPath := pathJoin(shaDir, uploadIDDir) var modTime time.Time // Upload IDs are of the form base64_url(<UUID>x<UnixNano>), we can extract the time from the UUID. if b64, err := base64.RawURLEncoding.DecodeString(uploadIDDir); err == nil { if split := strings.Split(string(b64), "x"); len(split) == 2 {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Sep 29 22:40:36 UTC 2024 - 44.7K bytes - Viewed (0)