Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 79 of 79 for IsZero (0.42 sec)

  1. 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
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 24.7K bytes
    - Viewed (2)
  2. 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)
    	}
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
  3. cmd/admin-handlers-users.go

    	if err != nil {
    		writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    		return
    	}
    
    	var expiration *time.Time
    	if !svcAccount.Expiration.IsZero() && !svcAccount.Expiration.Equal(timeSentinel) {
    		expiration = &svcAccount.Expiration
    	}
    
    	infoResp := madmin.InfoServiceAccountResp{
    		ParentUser:    svcAccount.ParentUser,
    		Name:          svcAccount.Name,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 12:41:13 GMT 2024
    - 77.5K bytes
    - Viewed (0)
  4. 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)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  5. 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
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 20:08:20 GMT 2024
    - 37.7K bytes
    - Viewed (5)
  6. cmd/xl-storage-format-v2.go

    						ver.ObjectV2.MetaSys[k] = []byte(v)
    					} else {
    						ver.ObjectV2.MetaUser[k] = v
    					}
    				}
    				if !fi.ModTime.IsZero() {
    					ver.ObjectV2.ModTime = fi.ModTime.UnixNano()
    				}
    				return x.setIdx(i, *ver)
    			}
    		}
    	}
    
    	return errFileVersionNotFound
    }
    
    // AddVersion adds a new version
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 23 05:07:37 GMT 2024
    - 63.6K bytes
    - Viewed (1)
  7. api/go1.13.txt

    pkg path/filepath (netbsd-arm64-cgo), const Separator = 47
    pkg path/filepath (netbsd-arm64), const ListSeparator = 58
    pkg path/filepath (netbsd-arm64), const Separator = 47
    pkg reflect, method (Value) IsZero() bool
    pkg runtime (netbsd-arm64-cgo), const GOARCH = "arm64"
    pkg runtime (netbsd-arm64-cgo), const GOOS = "netbsd"
    pkg runtime (netbsd-arm64), const GOARCH = "arm64"
    pkg runtime (netbsd-arm64), const GOOS = "netbsd"
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Aug 08 18:44:16 GMT 2019
    - 452.6K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.10.md

    * Add ipset binary for IPVS to hyperkube docker image ([#57648](https://github.com/kubernetes/kubernetes/pull/57648), [@Fsero](https://github.com/Fsero))
    
    * Making sure CSI E2E test runs on a local cluster ([#60017](https://github.com/kubernetes/kubernetes/pull/60017), [@sbezverk](https://github.com/sbezverk))
    
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu May 05 13:44:43 GMT 2022
    - 341.8K bytes
    - Viewed (0)
  9. api/go1.txt

    pkg time, method (Time) GobEncode() ([]uint8, error)
    pkg time, method (Time) Hour() int
    pkg time, method (Time) ISOWeek() (int, int)
    pkg time, method (Time) In(*Location) Time
    pkg time, method (Time) IsZero() bool
    pkg time, method (Time) Local() Time
    pkg time, method (Time) Location() *Location
    pkg time, method (Time) MarshalJSON() ([]uint8, error)
    pkg time, method (Time) Minute() int
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (2)
Back to top