Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 320 for timeEnd (0.26 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.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)
  2. src/syscall/zsysnum_freebsd_arm64.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: Fri Sep 16 01:17:28 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  3. src/runtime/sys_linux_s390x.s

    	SYSCALL
    	RET
    
    TEXT runtime·timer_create(SB),NOSPLIT|NOFRAME,$0-28
    	MOVW	clockid+0(FP), R2
    	MOVD	sevp+8(FP), R3
    	MOVD	timerid+16(FP), R4
    	MOVW	$SYS_timer_create, R1
    	SYSCALL
    	MOVW	R2, ret+24(FP)
    	RET
    
    TEXT runtime·timer_settime(SB),NOSPLIT|NOFRAME,$0-28
    	MOVW	timerid+0(FP), R2
    	MOVW	flags+4(FP), R3
    	MOVD	new+8(FP), R4
    	MOVD	old+16(FP), R5
    	MOVW	$SYS_timer_settime, R1
    	SYSCALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/UninterruptibleFutureTest.java

          throws TimeoutException, ExecutionException {
        SettableFuture<String> future = SettableFuture.create();
        future.set(RESULT);
        /*
         * getUninterruptibly should call the timed get method once with a
         * wait of 0 seconds (and it should succeed, since the result is already
         * available).
         */
        assertEquals(RESULT, getUninterruptibly(future, 0, SECONDS));
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/util/xdsfake/updater.go

    	for {
    		select {
    		case e := <-fx.Events:
    			if e.Type == et {
    				return &e
    			}
    			log.Infof("skipping event %q want %q", e.Type, et)
    			continue
    		case <-delay.C:
    			t.Fatalf("timed out waiting for %v", et)
    		}
    	}
    }
    
    // MatchOrFail expects the provided events to arrive, skipping unmatched events
    func (fx *Updater) MatchOrFail(t test.Failer, events ...Event) {
    	t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. pkg/probe/exec/exec.go

    		}
    
    		if errors.Is(err, remote.ErrCommandTimedOut) {
    			if utilfeature.DefaultFeatureGate.Enabled(features.ExecProbeTimeout) {
    				return probe.Failure, err.Error(), nil
    			}
    
    			klog.Warningf("Exec probe timed out but ExecProbeTimeout feature gate was disabled")
    		}
    
    		return probe.Unknown, "", err
    	}
    	return probe.Success, string(data), nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. pkg/kubelet/clustertrustbundle/clustertrustbundle_manager_test.go

    	ctbManager, _ := NewInformerManager(ctbInformer, 256, 5*time.Minute)
    
    	informerFactory.Start(ctx.Done())
    	if !cache.WaitForCacheSync(ctx.Done(), ctbInformer.Informer().HasSynced) {
    		t.Fatalf("Timed out waiting for informer to sync")
    	}
    
    	gotBundle, err := ctbManager.GetTrustAnchorsByName("ctb1", false)
    	if err != nil {
    		t.Fatalf("Error while calling GetTrustAnchorsByName: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  8. src/runtime/sys_linux_arm.s

    	SWI	$0
    	RET
    
    TEXT runtime·timer_create(SB),NOSPLIT,$0-16
    	MOVW	clockid+0(FP), R0
    	MOVW	sevp+4(FP), R1
    	MOVW	timerid+8(FP), R2
    	MOVW	$SYS_timer_create, R7
    	SWI	$0
    	MOVW	R0, ret+12(FP)
    	RET
    
    TEXT runtime·timer_settime(SB),NOSPLIT,$0-20
    	MOVW	timerid+0(FP), R0
    	MOVW	flags+4(FP), R1
    	MOVW	new+8(FP), R2
    	MOVW	old+12(FP), R3
    	MOVW	$SYS_timer_settime, R7
    	SWI	$0
    	MOVW	R0, ret+16(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  9. pkg/proxy/config/api_test.go

    		svcHandler.lock.Lock()
    		defer svcHandler.lock.Unlock()
    		if reflect.DeepEqual(svcHandler.state, expectedSvcState) {
    			return true, nil
    		}
    		return false, nil
    	})
    	if err != nil {
    		t.Fatal("Timed out waiting for the completion of handler `OnServiceAdd`")
    	}
    
    	err = wait.PollImmediate(time.Millisecond*10, wait.ForeverTestTimeout, func() (bool, error) {
    		epsHandler.lock.Lock()
    		defer epsHandler.lock.Unlock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/AbstractService.java

          // timed out. e.g. if we weren't event able to grab the lock within the timeout we would never
          // even check the guard. I don't think we care too much about this use case but it could lead
          // to a confusing error message.
          throw new TimeoutException("Timed out waiting for " + this + " to reach the RUNNING state.");
        }
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
Back to top