Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 67 for mtime (0.24 sec)

  1. src/cmd/go/internal/test/test.go

    	testKillTimeout    = 100 * 365 * 24 * time.Hour // backup alarm; defaults to about a century if no timeout is set
    	testWaitDelay      time.Duration                // how long to wait for output to close after a test binary exits; zero means unlimited
    	testCacheExpire    time.Time                    // ignore cached test results before this time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. misc/wasm/wasm_exec.js

    			symlink(path, link, callback) { callback(enosys()); },
    			truncate(path, length, callback) { callback(enosys()); },
    			unlink(path, callback) { callback(enosys()); },
    			utimes(path, atime, mtime, callback) { callback(enosys()); },
    		};
    	}
    
    	if (!globalThis.process) {
    		globalThis.process = {
    			getuid() { return -1; },
    			getgid() { return -1; },
    			geteuid() { return -1; },
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 17:47:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. src/cmd/dist/build.go

    		if i < 0 {
    			log.Fatalf("time log %s does not begin with start line", os.Getenv("GOBUILDTIMELOGFILE"))
    		}
    		t, err := time.Parse(time.UnixDate, s[:i])
    		if err != nil {
    			log.Fatalf("cannot parse time log line %q: %v", s, err)
    		}
    		timeLogStart = t
    		timeLogFile = f
    	}
    	t := time.Now()
    	fmt.Fprintf(timeLogFile, "%s %+.1fs %s %s\n", t.Format(time.UnixDate), t.Sub(timeLogStart).Seconds(), op, name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  4. doc/next/6-stdlib/1-time.md

    ### Timer changes
    
    Go 1.23 makes two significant changes to the implementation of
    [time.Timer] and [time.Ticker].
    
    <!-- go.dev/issue/61542 -->
    First, `Timer`s and `Ticker`s that are no longer referred to by the program
    become eligible for garbage collection immediately, even if their
    `Stop` methods have not been called.
    Earlier versions of Go did not collect unstopped `Timer`s until after
    they had fired and never collected unstopped `Ticker`s.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 20:49:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/fsys_walk.txt

    # Test that go list prefix... does not read directories not beginning with prefix.
    env GODEBUG=gofsystrace=1
    go list m...
    stderr mime
    stderr mime[\\/]multipart
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 12 09:11:26 UTC 2022
    - 177 bytes
    - Viewed (0)
  6. src/archive/tar/common.go

    	//
    	// To use AccessTime or ChangeTime, specify the Format as PAX or GNU.
    	// To use sub-second resolution, specify the Format as PAX.
    	ModTime    time.Time // Modification time
    	AccessTime time.Time // Access time (requires either PAX or GNU support)
    	ChangeTime time.Time // Change time (requires either PAX or GNU support)
    
    	Devmajor int64 // Major device number (valid for TypeChar or TypeBlock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    		// those details from whether the modification time changes during
    		// "go install", so do a best-effort update of the file times to make it
    		// look like we rewrote a.Target even if we did not. Updating the mtime
    		// may also help other mtime-based systems that depend on our
    		// previous mtime updates that happened more often.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. src/cmd/asm/internal/asm/operand_test.go

    	{"X1", "X1"},
    	{"X2", "X2"},
    	{"X3", "X3"},
    	{"X4", "X4"},
    	{"X5", "X5"},
    	{"X6", "X6"},
    	{"X7", "X7"},
    	{"asmcgocall<>(SB)", "asmcgocall<>(SB)"},
    	{"ax+4(FP)", "ax+4(FP)"},
    	{"ptime-12(SP)", "ptime-12(SP)"},
    	{"runtimeĀ·_NtWaitForSingleObject(SB)", "runtime._NtWaitForSingleObject(SB)"},
    	{"s(FP)", "s(FP)"},
    	{"sec+4(FP)", "sec+4(FP)"},
    	{"shifts<>(SB)(CX*8)", "shifts<>(SB)(CX*8)"},
    	{"x+4(FP)", "x+4(FP)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/web/http.go

    // to avoid needing to build net (and thus use cgo) during the
    // bootstrap process.
    
    package web
    
    import (
    	"crypto/tls"
    	"errors"
    	"fmt"
    	"io"
    	"mime"
    	"net"
    	"net/http"
    	urlpkg "net/url"
    	"os"
    	"strings"
    	"time"
    
    	"cmd/go/internal/auth"
    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/internal/browser"
    )
    
    // impatientInsecureHTTPClient is used with GOINSECURE,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 17:34:27 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  10. api/go1.20.txt

    pkg testing, method (*B) Elapsed() time.Duration #43620
    pkg time, const DateOnly = "2006-01-02" #52746
    pkg time, const DateOnly ideal-string #52746
    pkg time, const DateTime = "2006-01-02 15:04:05" #52746
    pkg time, const DateTime ideal-string #52746
    pkg time, const TimeOnly = "15:04:05" #52746
    pkg time, const TimeOnly ideal-string #52746
    pkg time, method (Time) Compare(Time) int #50770
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 21:23:32 UTC 2023
    - 602.6K bytes
    - Viewed (0)
Back to top