Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 230 for io_time (0.14 sec)

  1. src/main/java/org/codelibs/core/net/UuidUtil.java

         */
        public static String create() {
            final StringBuilder buf = new StringBuilder(BASE.length() * 2);
            buf.append(BASE);
            final int lowTime = (int) (System.currentTimeMillis() >> 32);
            StringUtil.appendHex(buf, lowTime);
            StringUtil.appendHex(buf, RANDOM.nextInt());
            return buf.toString();
        }
    
        private static byte[] getAddress() {
            try {
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. cmd/xl-storage-format-v1_gen.go

    			}
    		case "ActualSize":
    			z.ActualSize, err = dc.ReadInt64()
    			if err != nil {
    				err = msgp.WrapError(err, "ActualSize")
    				return
    			}
    		case "ModTime":
    			z.ModTime, err = dc.ReadTime()
    			if err != nil {
    				err = msgp.WrapError(err, "ModTime")
    				return
    			}
    		case "index":
    			z.Index, err = dc.ReadBytes(z.Index)
    			if err != nil {
    				err = msgp.WrapError(err, "Index")
    				return
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  3. cmd/s3-zip-handlers.go

    		}
    		return
    	}
    
    	// New object info
    	fileObjInfo := ObjectInfo{
    		Bucket:      bucket,
    		Name:        object,
    		Size:        int64(file.UncompressedSize64),
    		ModTime:     zipObjInfo.ModTime,
    		ContentType: mime.TypeByExtension(filepath.Ext(object)),
    	}
    
    	var rc io.ReadCloser
    
    	if file.UncompressedSize64 > 0 {
    		// There may be number of header bytes before the content.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. docs/debugging/pprofgoparser/main.go

    	"strings"
    	"time"
    )
    
    var (
    	goroutinesRE, searchRE *regexp.Regexp
    
    	// User input flags
    	searchText           string
    	goTime, less, margin time.Duration
    )
    
    func init() {
    	flag.DurationVar(&less, "less", 0, "goroutine waiting less than the specified time")
    	flag.DurationVar(&goTime, "time", 0, "goroutine waiting for exactly the specified time")
    	flag.DurationVar(&margin, "margin", 0, "margin time")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 06 11:43:16 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            assertEquals(systemHelper.getCurrentTimeAsLong() > systemHelper.eolTime, systemHelper.isEoled());
            final SystemHelper helper1 = new SystemHelper() {
                @Override
                public long getCurrentTimeAsLong() {
                    return systemHelper.eolTime + 1000L;
                }
            };
            helper1.eolTime = systemHelper.eolTime;
            assertTrue(helper1.isEoled());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  6. src/net/http/fs_test.go

    	fileMod := time.Unix(1000000000, 0).UTC()
    	fs := fakeFS{
    		"/": &fakeFileInfo{
    			dir:     true,
    			modtime: dirMod,
    			ents: []*fakeFileInfo{
    				{
    					basename: "b",
    					modtime:  fileMod,
    					contents: contents,
    				},
    				{
    					basename: "a",
    					modtime:  fileMod,
    					contents: contents,
    				},
    			},
    		},
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  7. docs/debugging/inspect/export.go

    	return
    }
    
    func (z xlMetaV2VersionHeaderV2) MarshalJSON() (o []byte, e error) {
    	tmp := struct {
    		VersionID string
    		ModTime   time.Time
    		Signature string
    		Type      uint8
    		Flags     uint8
    	}{
    		VersionID: hex.EncodeToString(z.VersionID[:]),
    		ModTime:   time.Unix(0, z.ModTime),
    		Signature: hex.EncodeToString(z.Signature[:]),
    		Type:      z.Type,
    		Flags:     z.Flags,
    	}
    	return json.Marshal(tmp)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 08 15:58:02 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  8. src/cmd/gofmt/gofmt_unix_test.go

    	}
    	if errBuf.Len() > 0 {
    		t.Log(errBuf)
    	}
    
    	info, err = os.Stat(fn)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if !info.ModTime().Equal(past) {
    		t.Errorf("after rewrite mod time is %v, want %v", info.ModTime(), past)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 12:52:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/benchmark/bench.go

    func (m *Metrics) Report(w io.Writer) {
    	if m == nil {
    		return
    	}
    
    	m.closeMark()
    
    	gcString := ""
    	if m.gc == GC {
    		gcString = "_GC"
    	}
    
    	var totTime time.Duration
    	for _, curMark := range m.marks {
    		dur := curMark.endT.Sub(curMark.startT)
    		totTime += dur
    		fmt.Fprintf(w, "%s 1 %d ns/op", makeBenchString(curMark.name+gcString), dur.Nanoseconds())
    		fmt.Fprintf(w, "\t%d B/op", curMark.endM.TotalAlloc-curMark.startM.TotalAlloc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 30 18:10:36 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. src/compress/gzip/issue14937_test.go

    		return
    	}
    	defer f.Close()
    	gz, err := NewReader(f)
    	if err != nil {
    		t.Errorf("cannot read gzip file %s: %s", path, err)
    		return
    	}
    	defer gz.Close()
    	if !gz.ModTime.IsZero() {
    		t.Errorf("gzip file %s has non-zero mtime (%s)", path, gz.ModTime)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top