Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 138 for timerC (0.12 sec)

  1. internal/kms/config.go

    		// Keep the default key in the KES cache to prevent availability issues
    		// when MinIO restarts
    		go func() {
    			timer := time.NewTicker(10 * time.Second)
    			defer timer.Stop()
    			defaultKey := env.Get(EnvKESDefaultKey, "")
    			for {
    				select {
    				case <-ctx.Done():
    					return
    				case <-timer.C:
    					client.DescribeKey(ctx, defaultKey)
    				}
    			}
    		}()
    
    		return &KMS{
    			Type:       MinKES,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. doc/godebug.md

    ### Go 1.23
    
    Go 1.23 changed the channels created by package time to be unbuffered
    (synchronous), which makes correct use of the [`Timer.Stop`](/pkg/time/#Timer.Stop)
    and [`Timer.Reset`](/pkg/time/#Timer.Reset) method results much easier.
    The [`asynctimerchan` setting](/pkg/time/#NewTimer) disables this change.
    There are no runtime metrics for this change,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

            when:
            def build = executer.withTasks("lock").start()
            def timer = Time.startTimer()
            poll(120) {
                assert (build.standardOutput =~ 'Pinged owner at port').count == 3
            }
            receivingLock.close()
            then:
            build.waitForFinish()
            pingRequestCount == 3 || pingRequestCount == 4
            timer.elapsedMillis > 3000 // See: DefaultFileLockContentionHandler.PING_DELAY
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    	errc := make(chan error, 2)
    	var timer *time.Timer // for canceling TLS handshake
    	if d := pconn.t.TLSHandshakeTimeout; d != 0 {
    		timer = time.AfterFunc(d, func() {
    			errc <- tlsHandshakeTimeoutError{}
    		})
    	}
    	go func() {
    		if trace != nil && trace.TLSHandshakeStart != nil {
    			trace.TLSHandshakeStart()
    		}
    		err := tlsConn.HandshakeContext(ctx)
    		if timer != nil {
    			timer.Stop()
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

        XlaCompiler::CompilationResult* compilation_result) {
      LOG_FIRST_N(INFO, 1) << "Compiling MLIR computation to XLA HLO using the "
                              "old (non-MLIR) tf2xla bridge";
    
      CompilationTimer timer;
      *compilation_result = {};
      bool has_mlir = computation.index() == 0;
    
      std::string mlir_string = has_mlir ? "has_mlir" : "has_function_to_hlo";
      const std::string kBridgePhase2Config =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    }
    
    type immediateTickerFactory struct{}
    
    func (t *immediateTickerFactory) NewTimer(d time.Duration) clock.Timer {
    	timer := immediateTicker{
    		c: make(chan time.Time),
    	}
    	timer.Reset(d)
    	return &timer
    }
    
    type immediateTicker struct {
    	c chan time.Time
    }
    
    func (t *immediateTicker) Reset(d time.Duration) (active bool) {
    	select {
    	case <-t.c:
    		active = true
    	default:
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/attach_detach_controller.go

    // should be used only to speed up tests. DefaultTimerConfig is the suggested
    // timer configuration for production.
    type TimerConfig struct {
    	// ReconcilerLoopPeriod is the amount of time the reconciler loop waits
    	// between successive executions
    	ReconcilerLoopPeriod time.Duration
    
    	// ReconcilerMaxWaitForUnmountDuration is the maximum amount of time the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  8. cmd/erasure-server-pool-rebalance.go

    		// to avoid multiple pool leaders herding to update around the same
    		// time.
    		r := rand.New(rand.NewSource(time.Now().UnixNano()))
    		randSleepFor := func() time.Duration {
    			return 5*time.Second + time.Duration(float64(5*time.Second)*r.Float64())
    		}
    
    		timer := time.NewTimer(randSleepFor())
    		defer timer.Stop()
    
    		var (
    			quit     bool
    			traceMsg string
    		)
    
    		for {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:45:54 UTC 2024
    - 27.3K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb/SmbClient.java

    import org.codelibs.core.io.CloseableUtil;
    import org.codelibs.core.io.FileUtil;
    import org.codelibs.core.io.InputStreamUtil;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.core.timer.TimeoutManager;
    import org.codelibs.core.timer.TimeoutTask;
    import org.codelibs.fess.crawler.Constants;
    import org.codelibs.fess.crawler.builder.RequestDataBuilder;
    import org.codelibs.fess.crawler.client.AbstractCrawlerClient;
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 23 01:54:10 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	{21, "SIGTTIN", "stopped (tty input)"},
    	{22, "SIGTTOU", "stopped (tty output)"},
    	{23, "SIGURG", "urgent I/O condition"},
    	{24, "SIGXCPU", "CPU time limit exceeded"},
    	{25, "SIGXFSZ", "file size limit exceeded"},
    	{26, "SIGVTALRM", "virtual timer expired"},
    	{27, "SIGPROF", "profiling timer expired"},
    	{28, "SIGWINCH", "window changed"},
    	{29, "SIGIO", "I/O possible"},
    	{30, "SIGPWR", "power failure"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top