Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 376 for timeEnd (0.13 sec)

  1. src/syscall/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 Sep 29 22:39:46 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  2. src/runtime/sys_linux_mips64x.s

    	SYSCALL
    	RET
    
    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, R2
    	SYSCALL
    	MOVW	R2, ret+24(FP)
    	RET
    
    TEXT runtime·timer_settime(SB),NOSPLIT,$0-28
    	MOVW	timerid+0(FP), R4
    	MOVW	flags+4(FP), R5
    	MOVV	new+8(FP), R6
    	MOVV	old+16(FP), R7
    	MOVV	$SYS_timer_settime, R2
    	SYSCALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 12K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfoIntegrationSpec.groovy

            """
            openJpmsModulesForConfigurationCache()
            def waitForExpirationResult = executer.withArgument('waitForExpiration').runWithFailure()
    
            then:
            waitForExpirationResult.assertHasCause("Timed out waiting for expiration event")
    
            and:
            !file(EXPIRATION_EVENT).exists()
        }
    
        def "a daemon expiration listener receives expiration reasons when daemons run in the foreground"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. cluster/gce/gci/flexvolume_node_setup.sh

      until [[ $timeout -eq 0 ]]; do
        printf "."
        if [[ $( curl -s http://localhost:${healthz_port}/healthz ) == "ok" ]]; then
          return 0
        fi
        sleep 1
        timeout=$(( timeout-1 ))
      done
    
      # Timed out waiting for kubelet to become healthy.
      return 1
    }
    
    flex_clean() {
      echo
      echo "An error has occurred. Cleaning up..."
      echo
    
      umount_silent ${VOLUME_PLUGIN_DIR}
      rm -rf ${VOLUME_PLUGIN_DIR}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 13 17:58:51 UTC 2020
    - 5.8K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/RecordingCallback.kt

          }
          val nowMillis = TimeUnit.NANOSECONDS.toMillis(System.nanoTime())
          if (nowMillis >= timeoutMillis) break
          (this as Object).wait(timeoutMillis - nowMillis)
        }
    
        throw AssertionError("Timed out waiting for response to $url")
      }
    
      companion object {
        val TIMEOUT_MILLIS = TimeUnit.SECONDS.toMillis(10)
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/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: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  7. android/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)
  8. okhttp/src/test/java/okhttp3/TestLogHandler.kt

      fun takeAll(): List<String> {
        val list = mutableListOf<String>()
        logs.drainTo(list)
        return list
      }
    
      fun take(): String {
        return logs.poll(10, TimeUnit.SECONDS)
          ?: throw AssertionError("Timed out waiting for log message.")
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. pkg/test/echo/server/forwarder/executor.go

    		g.e.totalRequests.Inc()
    		g.e.activeRequests.Inc()
    		defer g.e.activeRequests.Dec()
    
    		// Acquire the group concurrency semaphore.
    		if err := g.sem.Acquire(ctx, 1); err != nil {
    			return fmt.Errorf("request set timed out: %v", err)
    		}
    		defer g.sem.Release(1)
    
    		return work()
    	})
    }
    
    func (g *execGroup) Wait() *multierror.Error {
    	return g.g.Wait()
    }
    
    func (e *executor) Close() {
    	close(e.stopCh)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 10 18:09:08 UTC 2022
    - 2K bytes
    - Viewed (0)
  10. pkg/config/mesh/networks_watcher_test.go

    	writeMessage(t, path, &n)
    
    	select {
    	case <-doneCh:
    		g.Expect(newN).To(Equal(&n))
    		g.Expect(w.Networks()).To(Equal(newN))
    		break
    	case <-time.After(time.Second * 5):
    		t.Fatal("timed out waiting for update")
    	}
    }
    
    func newNetworksWatcher(t *testing.T, filename string) mesh.NetworksWatcher {
    	t.Helper()
    	w, err := mesh.NewNetworksWatcher(filewatcher.NewWatcher(), filename)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top