- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 44 for Time (0.02 sec)
-
cmd/admin-handlers.go
name string size int64 mode os.FileMode modTime time.Time isDir bool sys interface{} } func (f dummyFileInfo) Name() string { return f.name } func (f dummyFileInfo) Size() int64 { return f.size } func (f dummyFileInfo) Mode() os.FileMode { return f.mode } func (f dummyFileInfo) ModTime() time.Time { return f.modTime } func (f dummyFileInfo) IsDir() bool { return f.isDir }
Registered: 2025-05-25 19:28 - Last Modified: 2025-04-01 15:21 - 99.6K bytes - Viewed (0) -
cmd/bucket-replication.go
startTime := time.Now() return func(sz int64, err error) { duration := time.Since(startTime) if globalTrace.NumSubscribers(madmin.TraceReplicationResync) > 0 { globalTrace.Publish(replicationResyncTrace(resyncID, startTime, duration, path, err, sz)) } } }
Registered: 2025-05-25 19:28 - Last Modified: 2025-04-03 06:45 - 118.1K bytes - Viewed (0) -
cmd/metrics-v2.go
mg := &MetricsGroupV2{ cacheInterval: 10 * time.Second, metricsGroupOpts: opts, } mg.RegisterRead(func(_ context.Context) (metrics []MetricV2) { lastSyncTime := atomic.LoadUint64(&globalIAMSys.LastRefreshTimeUnixNano) var sinceLastSyncMillis uint64 if lastSyncTime != 0 { sinceLastSyncMillis = (uint64(time.Now().UnixNano()) - lastSyncTime) / uint64(time.Millisecond) }
Registered: 2025-05-25 19:28 - Last Modified: 2025-04-23 20:56 - 133.5K bytes - Viewed (0) -
cmd/site-replication.go
Registered: 2025-05-25 19:28 - Last Modified: 2025-04-29 15:35 - 184.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt
beat time when I learn music.' `Ah! that accounts for it,' said the Hatter. `He won't stand beating. Now, if you only kept on good terms with him, he'd do almost anything you liked with the clock. For instance, suppose it were nine o'clock in the morning, just time to begin lessons: you'd only have to whisper a hint to Time, and round goes the clock in a twinkling! Half-past one, time for dinner!'
Registered: 2025-05-30 12:43 - Last Modified: 2017-04-21 02:27 - 145.2K bytes - Viewed (0) -
cmd/object-handlers.go
if !srcTimestamp.IsZero() { ondiskTimestamp, err := time.Parse(time.RFC3339Nano, lastTaggingTimestamp) // update tagging metadata only if replica timestamp is newer than what's on disk if err != nil || (err == nil && !ondiskTimestamp.After(srcTimestamp)) { srcInfo.UserDefined[ReservedMetadataPrefixLower+TaggingTimestamp] = srcTimestamp.UTC().Format(time.RFC3339Nano) srcInfo.UserDefined[xhttp.AmzObjectTagging] = objTags
Registered: 2025-05-25 19:28 - Last Modified: 2025-04-03 14:55 - 118.2K bytes - Viewed (0) -
guava/src/com/google/common/cache/LocalCache.java
volatile long accessTime = Long.MAX_VALUE; @Override public long getAccessTime() { return accessTime; } @Override public void setAccessTime(long time) { this.accessTime = time; } // Guarded By Segment.this @Weak ReferenceEntry<K, V> nextAccess = nullEntry(); @Override public ReferenceEntry<K, V> getNextInAccessQueue() {
Registered: 2025-05-30 12:43 - Last Modified: 2025-05-13 17:27 - 148.8K bytes - Viewed (0) -
cmd/server_test.go
// retrieve the info of last modification time of the object from the response header. lastModified := response.Header.Get("Last-Modified") // Parse it into time.Time structure. t, err := time.Parse(http.TimeFormat, lastModified) c.Assert(err, nil) // make HTTP request to obtain object info. // But this time set the "If-Modified-Since" header to be 10 minute more than the actual
Registered: 2025-05-25 19:28 - Last Modified: 2025-04-03 14:55 - 118.1K bytes - Viewed (0) -
cmd/sts-handlers_test.go
}, } entRes.Timestamp = time.Time{} if !reflect.DeepEqual(expected, entRes) { c.Fatalf("policy entities mismatch: expected: %v, got: %v", expected, entRes) } dn := "uid=svc.algorithm,ou=swengg,dc=min,dc=io" res, err := s.adm.ListAccessKeysLDAP(ctx, dn, "") if err != nil { c.Fatalf("Unable to list access keys: %v", err) } epochTime := time.Unix(0, 0).UTC()
Registered: 2025-05-25 19:28 - Last Modified: 2025-04-09 14:28 - 100.3K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
/** The key of the message: Crawler start time */ public static final String LABELS_crawling_info_CrawlerStartTime = "{labels.crawling_info_CrawlerStartTime}"; /** The key of the message: Crawler end time */ public static final String LABELS_crawling_info_CrawlerEndTime = "{labels.crawling_info_CrawlerEndTime}"; /** The key of the message: Crawler exec time */
Registered: 2025-05-26 08:04 - Last Modified: 2025-03-15 06:53 - 146.4K bytes - Viewed (0)