Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 376 for timeEnd (0.14 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.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/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)
  3. 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)
  4. 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)
  5. guava/src/com/google/common/cache/RemovalListener.java

    /**
     * An object that can receive a notification when an entry is removed from a cache. The removal
     * resulting in notification could have occurred to an entry being manually removed or replaced, or
     * due to eviction resulting from timed expiration, exceeding a maximum size, or garbage collection.
     *
     * <p>An instance may be called concurrently by multiple threads to process different entries.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top