Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 320 for timeEnd (0.13 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go

    	SYS_TIMER_CREATE         = 235 // { int|sys||timer_create(clockid_t clock_id, struct sigevent *evp, timer_t *timerid); }
    	SYS_TIMER_DELETE         = 236 // { int|sys||timer_delete(timer_t timerid); }
    	SYS_TIMER_GETOVERRUN     = 239 // { int|sys||timer_getoverrun(timer_t timerid); }
    	SYS_FDATASYNC            = 241 // { int|sys||fdatasync(int fd); }
    	SYS_MLOCKALL             = 242 // { int|sys||mlockall(int flags); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go

    	SYS_TIMER_CREATE         = 235 // { int|sys||timer_create(clockid_t clock_id, struct sigevent *evp, timer_t *timerid); }
    	SYS_TIMER_DELETE         = 236 // { int|sys||timer_delete(timer_t timerid); }
    	SYS_TIMER_GETOVERRUN     = 239 // { int|sys||timer_getoverrun(timer_t timerid); }
    	SYS_FDATASYNC            = 241 // { int|sys||fdatasync(int fd); }
    	SYS_MLOCKALL             = 242 // { int|sys||mlockall(int flags); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  3. src/syscall/zsysnum_freebsd_386.go

    	SYS_KTIMER_DELETE            = 236 // { int ktimer_delete(int timerid); }
    	SYS_KTIMER_SETTIME           = 237 // { int ktimer_settime(int timerid, int flags, \
    	SYS_KTIMER_GETTIME           = 238 // { int ktimer_gettime(int timerid, struct \
    	SYS_KTIMER_GETOVERRUN        = 239 // { int ktimer_getoverrun(int timerid); }
    	SYS_NANOSLEEP                = 240 // { int nanosleep(const struct timespec *rqtp, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  4. src/runtime/sys_linux_mipsx.s

    	SYSCALL
    	RET
    
    TEXT runtime·timer_create(SB),NOSPLIT,$0-16
    	MOVW	clockid+0(FP), R4
    	MOVW	sevp+4(FP), R5
    	MOVW	timerid+8(FP), R6
    	MOVW	$SYS_timer_create, R2
    	SYSCALL
    	MOVW	R2, ret+12(FP)
    	RET
    
    TEXT runtime·timer_settime(SB),NOSPLIT,$0-20
    	MOVW	timerid+0(FP), R4
    	MOVW	flags+4(FP), R5
    	MOVW	new+8(FP), R6
    	MOVW	old+12(FP), R7
    	MOVW	$SYS_timer_settime, R2
    	SYSCALL
    	MOVW	R2, ret+16(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/change_test.go

    	updateCRD()
    
    	drained := make(chan struct{})
    	go func() {
    		defer close(drained)
    		wg.Wait()
    	}()
    
    	select {
    	case <-drained:
    	case <-time.After(wait.ForeverTestTimeout):
    		t.Fatal("timed out waiting for watchers to be terminated")
    	}
    
    	stopChan := make(chan struct{})
    
    	// Set up loop to modify CRD in the background
    	wg.Add(1)
    	go func() {
    		defer wg.Done()
    		for {
    			select {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:59:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. src/internal/testenv/exec.go

    				// after (or too close before) the test has already timed out.
    				// Add a shorter timeout so that the test will produce useful output.
    				ctx, cancelCtx = context.WithTimeout(ctx, cmdTimeout)
    			}
    		}
    	}
    
    	cmd := exec.CommandContext(ctx, name, args...)
    	cmd.Cancel = func() error {
    		if cancelCtx != nil && ctx.Err() == context.DeadlineExceeded {
    			// The command timed out due to running too close to the test's deadline.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 27 17:53:23 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. cni/pkg/install/cniconfig_test.go

    				result, err := getCNIConfigFilepath(ctx1, c.specifiedConfName, tempDir, c.chainedCNIPlugin)
    				if err != nil {
    					assert.Equal(t, result, "")
    					if err == context.DeadlineExceeded {
    						t.Fatalf("timed out waiting for expected %s", expectedFilepath)
    					}
    					t.Fatal(err)
    				}
    				if result != expectedFilepath {
    					t.Fatalf("expected %s, got %s", expectedFilepath, result)
    				}
    				// Successful test case
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. pkg/config/mesh/watcher_test_utils.go

    func (t *TestWatcher) Update(meshConfig *meshconfig.MeshConfig, timeout time.Duration) error {
    	t.HandleMeshConfig(meshConfig)
    	select {
    	case <-t.doneCh:
    		return nil
    	case <-time.After(timeout):
    		return errors.New("timed out waiting for mesh.Watcher handler to trigger")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 03 00:26:45 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. cni/pkg/install/install_test.go

    				assert.Equal(t, isReady.Load(), true)
    			case err := <-errChan:
    				if err == nil {
    					t.Fatal("invalid configuration detected")
    				}
    				t.Fatal(err)
    			case <-time.After(5 * time.Second):
    				t.Fatal("timed out waiting for isReady to be set to true")
    			}
    
    			// Change SA token
    			if len(c.saNewFilename) > 0 {
    				t.Log("Expecting detect changes to the SA token")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go

    	SYS_KTIMER_DELETE            = 236 // { int ktimer_delete(int timerid); }
    	SYS_KTIMER_SETTIME           = 237 // { int ktimer_settime(int timerid, int flags, const struct itimerspec *value, struct itimerspec *ovalue); }
    	SYS_KTIMER_GETTIME           = 238 // { int ktimer_gettime(int timerid, struct itimerspec *value); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
Back to top