Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 347 for timeEnd (0.13 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/internal/upload/date.go

    		return time.Time{}, time.Time{}, fmt.Errorf("failed to parse TimeBegin: %v", err)
    	}
    	timeEnd, ok := parsed.Meta["TimeEnd"]
    	if !ok {
    		return time.Time{}, time.Time{}, fmt.Errorf("missing counter metadata for TimeEnd")
    	}
    	end, err = time.Parse(time.RFC3339, timeEnd)
    	if err != nil {
    		return time.Time{}, time.Time{}, fmt.Errorf("failed to parse TimeEnd: %v", err)
    	}
    	return begin, end, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. pkg/kubelet/types/types_test.go

    	}
    }
    
    func TestNewTimestamp(t *testing.T) {
    	timeStart := time.Now()
    	timestamp := NewTimestamp()
    	timeEnd := time.Now()
    	assert.WithinDuration(t, timestamp.Get(), timeStart, timeEnd.Sub(timeStart))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 19 08:28:25 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    	if err != nil {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(toAPIErrorCode(ctx, err)), r.URL)
    		return
    	}
    	ctx = lkctx.Context()
    	defer nsLock.Unlock(lkctx)
    	timeEnd := time.Now()
    
    	atomic.SwapInt64(&globalLastClientPerfExtraTime, timeEnd.Sub(timeStart).Nanoseconds())
    
    	ctx, cancel := context.WithTimeout(ctx, madmin.MaxClientPerfTimeout)
    	defer cancel()
    	totalRx := int64(0)
    	connectTime := time.Now()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    ,{transformer:_,extractor:E}])=>{S=k?await te.promises.readFile(k,"utf8"):S,XC(_(S),E,r,n)}))}Ye.DEBUG&&console.timeEnd("Reading changed files");let o=i.classCache.size;Ye.DEBUG&&console.time("Generate rules"),Ye.DEBUG&&console.time("Sorting candidates");let u=new Set([...r].sort((y,w)=>y===w?0:y<w?-1:1));Ye.DEBUG&&console.timeEnd("Sorting candidates"),kn(u,i),Ye.DEBUG&&console.timeEnd("Generate rules"),Ye.DEBUG&&console.time("Build stylesheet"),(i.stylesheetCache===null||i.classCache.size!==o)&...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (0)
  5. src/runtime/os_linux.go

    //go:noescape
    func setitimer(mode int32, new, old *itimerval)
    
    //go:noescape
    func timer_create(clockid int32, sevp *sigevent, timerid *int32) int32
    
    //go:noescape
    func timer_settime(timerid int32, flags int32, new, old *itimerspec) int32
    
    //go:noescape
    func timer_delete(timerid int32) int32
    
    //go:noescape
    func rtsigprocmask(how int32, new, old *sigset, size int32)
    
    //go:nosplit
    //go:nowritebarrierrec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  6. pkg/ctrlz/ctrlz_test.go

    	server := startAndWaitForServer(t)
    	done := make(chan struct{}, 1)
    	go func() {
    		server.Close()
    		done <- struct{}{}
    	}()
    	select {
    	case <-done:
    	case <-time.After(5 * time.Second):
    		t.Fatal("Timed out waiting for listeningTestProbe to be called")
    	}
    }
    
    func TestSignals(t *testing.T) {
    	c := make(chan os.Signal, 1)
    	signal.Notify(c, syscall.SIGUSR1)
    	server := startAndWaitForServer(t)
    	defer server.Close()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 15 18:23:41 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. src/runtime/sys_linux_riscv64.s

    // func timer_create(clockid int32, sevp *sigevent, timerid *int32) int32
    TEXT runtime·timer_create(SB),NOSPLIT,$0-28
    	MOVW	clockid+0(FP), A0
    	MOV	sevp+8(FP), A1
    	MOV	timerid+16(FP), A2
    	MOV	$SYS_timer_create, A7
    	ECALL
    	MOVW	A0, ret+24(FP)
    	RET
    
    // func timer_settime(timerid int32, flags int32, new, old *itimerspec) int32
    TEXT runtime·timer_settime(SB),NOSPLIT,$0-28
    	MOVW	timerid+0(FP), A0
    	MOVW	flags+4(FP), A1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskTimeoutIntegrationTest.groovy

            outputLines[1] == "Timed out task ':block' has not yet stopped."
            outputLines[outputLines.size() - 1] == "Timed out task ':block' has stopped."
    
            and:
            def logging = taskLogging(":block")
            logging[0] == "Requesting stop of task ':block' as it has exceeded its configured timeout of 500ms."
            logging[1] == "Timed out task ':block' has not yet stopped."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. src/runtime/sys_linux_loong64.s

    // func timer_create(clockid int32, sevp *sigevent, timerid *int32) int32
    TEXT runtime·timer_create(SB),NOSPLIT,$0-28
    	MOVW	clockid+0(FP), R4
    	MOVV	sevp+8(FP), R5
    	MOVV	timerid+16(FP), R6
    	MOVV	$SYS_timer_create, R11
    	SYSCALL
    	MOVW	R4, ret+24(FP)
    	RET
    
    // func timer_settime(timerid int32, flags int32, new, old *itimerspec) int32
    TEXT runtime·timer_settime(SB),NOSPLIT,$0-28
    	MOVW	timerid+0(FP), R4
    	MOVW	flags+4(FP), R5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  10. pkg/probe/exec/exec_test.go

    		// Timeout
    		{probe.Failure, false, true, "", remote.ErrCommandTimedOut.Error() + ": command testcmd timed out", fmt.Errorf("%w: command testcmd timed out", remote.ErrCommandTimedOut)},
    		// ExecProbeTimeout
    		{probe.Unknown, true, false, "", "", fmt.Errorf("%w: command testcmd timed out", remote.ErrCommandTimedOut)},
    	}
    
    	for i, test := range tests {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top