Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for lamp (0.05 sec)

  1. src/net/http/server.go

    	pollIntervalBase := time.Millisecond
    	nextPollInterval := func() time.Duration {
    		// Add 10% jitter.
    		interval := pollIntervalBase + time.Duration(rand.Intn(int(pollIntervalBase/10)))
    		// Double and clamp for next time.
    		pollIntervalBase *= 2
    		if pollIntervalBase > shutdownPollIntervalMax {
    			pollIntervalBase = shutdownPollIntervalMax
    		}
    		return interval
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

          concatenated = rewriter.create<TFL::ConcatenationOp>(
              op->getLoc(), begin_type, start_indices, /*axis=*/0,
              /*fused_activation_function=*/rewriter.getStringAttr("NONE"));
        }
    
        // Clamp with lower limit.
        auto lower_limit_attr = DenseIntElementsAttr::get(
            single_element_type, {static_cast<int64_t>(0)});
        auto lower_limit_cst =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    		// dependency, and at the moment we don't try to instrument it
    		// for coverage. There isn't any technical reason why
    		// *_test.go files couldn't be instrumented, but it probably
    		// doesn't make much sense to lump together coverage metrics
    		// (ex: percent stmts covered) of *_test.go files with
    		// non-test Go code.
    		if len(p.GoFiles)+len(p.CgoFiles) == 0 {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top