Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 647 for better (0.25 sec)

  1. internal/http/dial_linux.go

    			// with dead end because tcp-keepalive is not fired when there is data in the socket buffer.
    			//    https://blog.cloudflare.com/when-tcp-sockets-refuse-to-die/
    			// This is a sensitive configuration, it is better to set it to high values, > 60 secs since it can
    			// affect clients reading data with a very slow pace  (disappropriate with socket buffer sizes)
    			if opts.UserTimeout > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/sync/cond.go

    //
    // In the terminology of [the Go memory model], Cond arranges that
    // a call to [Cond.Broadcast] or [Cond.Signal] “synchronizes before” any Wait call
    // that it unblocks.
    //
    // For many simple use cases, users will be better off using channels than a
    // Cond (Broadcast corresponds to closing a channel, and Signal corresponds to
    // sending on a channel).
    //
    // For more on replacements for [sync.Cond], see [Roberto Clapis's series on
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/decls0.go

    func _() { const init = 0 }
    func _() { type init int }
    func _() { var init int; _ = init }
    
    // invalid array types
    type (
    	iA0 [... /* ERROR "invalid use of [...] array" */ ]byte
    	// The error message below could be better. At the moment
    	// we believe an integer that is too large is not an integer.
    	// But at least we get an error.
    	iA1 [1 /* ERROR "invalid array length" */ <<100]int
    	iA2 [- /* ERROR "invalid array length" */ 1]complex128
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/init/waitcontrolplane.go

    	data, ok := c.(InitData)
    	if !ok {
    		return errors.New("wait-control-plane phase invoked with an invalid data struct")
    	}
    
    	// If we're dry-running, print the generated manifests.
    	// TODO: think of a better place to move this call - e.g. a hidden phase.
    	if data.DryRun() {
    		if err := dryrunutil.PrintFilesIfDryRunning(true /* needPrintManifest */, data.ManifestDir(), data.OutputWriter()); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. src/internal/coverage/cfile/ts_test.go

    			return dir
    		}
    	}
    	return t.TempDir()
    }
    
    // TestTestSupport does a basic verification of the functionality in
    // ProcessCoverTestDir (doing this here as opposed to
    // relying on other test paths will provide a better signal when
    // running "go test -cover" for this package).
    func TestTestSupport(t *testing.T) {
    	if !goexperiment.CoverageRedesign {
    		return
    	}
    	if testing.CoverMode() == "" {
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:58:07 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. docs/en/docs/async.md

    ### Is concurrency better than parallelism?
    
    Nope! That's not the moral of the story.
    
    Concurrency is different than parallelism. And it is better on **specific** scenarios that involve a lot of waiting. Because of that, it generally is a lot better than parallelism for web application development. But not for everything.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/DefaultPayloadClassLoaderRegistry.java

            // When this classloader is reused for multiple requests, the classpath of subsequent requests may be different.
            // So, update the classpath of this shared classloader
            // It would be better to not combine client classloaders but instead to recreate the client side structure
            if (details.spec instanceof ClientOwnedClassLoaderSpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. pkg/scheduler/apis/config/v1/default_plugins.go

    		// This plugin should come before DefaultPreemption because if
    		// there is a problem with a Pod and PostFilter gets called to
    		// resolve the problem, it is better to first deallocate an
    		// idle ResourceClaim than it is to evict some Pod that might
    		// be doing useful work.
    		for i := range config.MultiPoint.Enabled {
    			if config.MultiPoint.Enabled[i].Name == names.DefaultPreemption {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/compile.go

    // between different phases. It does not override the passes
    // list above.
    type constraint struct {
    	a, b string // a must come before b
    }
    
    var passOrder = [...]constraint{
    	// "insert resched checks" uses mem, better to clean out stores first.
    	{"dse", "insert resched checks"},
    	// insert resched checks adds new blocks containing generic instructions
    	{"insert resched checks", "lower"},
    	{"insert resched checks", "tighten"},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/analysis/cost_analysis.cc

      auto shape = type.getShape();
    
      int64_t size = 1;
      for (int64_t dim : shape) {
        // For unknown dimensions, use 1 as the size because it is usually the batch
        // dimension.
        //
        // TODO(chky): Find out a better default number for this case.
        size *= std::max(kDefaultCheapCost, dim);
      }
    
      return size;
    }
    
    int64_t InferTensorSize(const CostContext& context, mlir::TensorType type) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top