- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 100 for isZero (0.06 sec)
-
cmd/admin-heal-ops.go
func (h *healSequence) hasEnded() bool { h.mutex.RLock() defer h.mutex.RUnlock() // background heal never ends if h.clientToken == bgHealingUUID { return false } return !h.endTime.IsZero() } // stops the heal sequence - safe to call multiple times. func (h *healSequence) stop() { h.cancelCtx() } // pushHealResultItem - pushes a heal result item for consumption in
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 25.4K bytes - Viewed (0) -
src/archive/tar/common.go
} } if v, ok := h.PAXRecords[paxKey]; ok && v == strconv.FormatInt(n, 10) { paxHdrs[paxKey] = v } } verifyTime := func(ts time.Time, size int, name, paxKey string) { if ts.IsZero() { return // Always okay } if !fitsInBase256(size, ts.Unix()) { whyNoGNU = fmt.Sprintf("GNU cannot encode %s=%v", name, ts) format.mustNotBe(FormatGNU) } isMtime := paxKey == paxMtime
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Tue Oct 07 19:46:36 UTC 2025 - 24.5K bytes - Viewed (0) -
src/archive/zip/reader_test.go
if f.Name != ft.Name { t.Errorf("name=%q, want %q", f.Name, ft.Name) } if !ft.Modified.IsZero() && !equalTimeAndZone(f.Modified, ft.Modified) { t.Errorf("%s: Modified=%s, want %s", f.Name, f.Modified, ft.Modified) } if !ft.ModTime.IsZero() && !equalTimeAndZone(f.ModTime(), ft.ModTime) { t.Errorf("%s: ModTime=%s, want %s", f.Name, f.ModTime(), ft.ModTime) }Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Fri Oct 17 20:10:27 UTC 2025 - 56.5K bytes - Viewed (0) -
src/archive/zip/reader.go
ts := int64(fieldBuf.uint32()) // ModTime since Unix epoch modified = time.Unix(ts, 0) } } msdosModified := msDosTimeToTime(f.ModifiedDate, f.ModifiedTime) f.Modified = msdosModified if !modified.IsZero() { f.Modified = modified.UTC() // If legacy MS-DOS timestamps are set, we can use the delta between // the legacy and extended versions to estimate timezone offset. //
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Tue Mar 11 22:19:38 UTC 2025 - 28.4K bytes - Viewed (0) -
cmd/erasure-sets.go
}() var wg sync.WaitGroup diskMap := s.getDiskMap() for _, endpoint := range s.endpoints.Endpoints { cdisk := diskMap[endpoint] if cdisk != nil && cdisk.IsOnline() { if s.lastConnectDisksOpTime.IsZero() { continue } // An online-disk means its a valid disk but it may be a re-connected disk // we verify that here based on LastConn(), however we make sure to avoid
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 37K bytes - Viewed (1) -
cmd/iam-store.go
return PolicyDoc{ Version: 1, Policy: p, } } func (d *PolicyDoc) update(p policy.Policy) { now := UTCNow().Round(time.Millisecond) d.UpdateDate = now if d.CreateDate.IsZero() { d.CreateDate = now } d.Policy = p } // parseJSON parses both the old and the new format for storing policy // definitions. //Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 87.1K bytes - Viewed (0) -
lib/fips140/v1.0.0-c2097c7c.zip
// SUB(R<T-S1) // R = T-S1 p256SubInternal(RH,RL,T1,T0,S1H,S1L) // if R == 0 or R^P == 0 then ret=ret else ret=0 // clobbers T1H and T1L MOVD $0, ISZERO MOVD $1, TRUE VZERO ZER VO RL, RH, T1H VCEQGS ZER, T1H, T1H MOVDEQ TRUE, ISZERO VX RL, PL, T1L VX RH, PH, T1H VO T1L, T1H, T1H VCEQGS ZER, T1H, T1H MOVDEQ TRUE, ISZERO AND ret+24(FP), ISZERO MOVD ISZERO, ret+24(FP) // X=H ; Y=H ; MUL; T- // T1 = H*H VLR HL, X0 VLR HH, X1 VLR HL, Y0 VLR HH, Y1 CALL p256SqrInternal<>(SB) // X- ; Y=T ; MUL; T2=T // T2...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Sep 25 19:53:19 UTC 2025 - 642.7K bytes - Viewed (0) -
lib/fips140/v1.1.0-rc1.zip
// SUB(R<T-S1) // R = T-S1 p256SubInternal(RH,RL,T1,T0,S1H,S1L) // if R == 0 or R^P == 0 then ret=ret else ret=0 // clobbers T1H and T1L MOVD $0, ISZERO MOVD $1, TRUE VZERO ZER VO RL, RH, T1H VCEQGS ZER, T1H, T1H MOVDEQ TRUE, ISZERO VX RL, PL, T1L VX RH, PH, T1H VO T1L, T1H, T1H VCEQGS ZER, T1H, T1H MOVDEQ TRUE, ISZERO AND ret+24(FP), ISZERO MOVD ISZERO, ret+24(FP) // X=H ; Y=H ; MUL; T- // T1 = H*H VLR HL, X0 VLR HH, X1 VLR HL, Y0 VLR HH, Y1 CALL p256SqrInternal<>(SB) // X- ; Y=T ; MUL; T2=T // T2...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Dec 11 16:27:41 UTC 2025 - 663K bytes - Viewed (0) -
cmd/bucket-replication.go
} // QueueReplicationHeal is a wrapper for queueReplicationHeal func QueueReplicationHeal(ctx context.Context, bucket string, oi ObjectInfo, retryCount int) { // ignore modtime zero objects if oi.ModTime.IsZero() { return } rcfg, err := getReplicationConfig(ctx, bucket) if err != nil { replLogOnceIf(ctx, err, bucket) return } tgts, _ := globalBucketTargetSys.ListBucketTargets(ctx, bucket)
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 118.2K bytes - Viewed (0) -
cmd/xl-storage-format-v2.go
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 65.6K bytes - Viewed (1)