Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 105 for significantly_ (0.29 sec)

  1. src/cmd/go/internal/work/build.go

    		in which case it is "atomic".
    		The values:
    		set: bool: does this statement run?
    		count: int: how many times does this statement run?
    		atomic: int: count, but correct in multithreaded tests;
    			significantly more expensive.
    		Sets -cover.
    	-coverpkg pattern1,pattern2,pattern3
    		For a build that targets package 'main' (e.g. building a Go
    		executable), apply coverage analysis to each package matching
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    Source sets are a powerful concept that tie together several aspects of compilation:
    
     * the source files and where they're located
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  3. src/runtime/time.go

    					pollUntil = tw
    				}
    				break
    			}
    			ran = true
    		}
    
    		// Note: Delaying the forced adjustment until after the ts.run
    		// (as opposed to calling ts.adjust(now, force) above)
    		// is significantly faster under contention, such as in
    		// package time's BenchmarkTimerAdjust10000,
    		// though we do not fully understand why.
    		force = ts == &getg().m.p.ptr().timers && int(ts.zombies.Load()) > int(ts.len.Load())/4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  4. src/runtime/metrics_test.go

    	b.StopTimer()
    	stop()
    
    	// Disable the default */op metrics.
    	// ns/op doesn't mean anything because it's an average, but we
    	// have a sleep in our b.N loop above which skews this significantly.
    	b.ReportMetric(0, "ns/op")
    	b.ReportMetric(0, "B/op")
    	b.ReportMetric(0, "allocs/op")
    
    	// Sort latencies then report percentiles.
    	sort.Slice(latencies, func(i, j int) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 45K bytes
    - Viewed (0)
  5. src/crypto/tls/common.go

    	return c.ctx
    }
    
    // RenegotiationSupport enumerates the different levels of support for TLS
    // renegotiation. TLS renegotiation is the act of performing subsequent
    // handshakes on a connection after the first. This significantly complicates
    // the state machine and has been the source of numerous, subtle security
    // issues. Initiating a renegotiation is not supported, but support for
    // accepting renegotiation requests may be enabled.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  6. src/math/big/float.go

    	ey := int64(y.exp) - int64(len(y.mant))*_W
    
    	al := alias(z.mant, x.mant) || alias(z.mant, y.mant)
    
    	// TODO(gri) having a combined add-and-shift primitive
    	//           could make this code significantly faster
    	switch {
    	case ex < ey:
    		if al {
    			t := nat(nil).shl(y.mant, uint(ey-ex))
    			z.mant = z.mant.add(x.mant, t)
    		} else {
    			z.mant = z.mant.shl(y.mant, uint(ey-ex))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/Futures.java

      // A note on memory visibility.
      // Many of the utilities in this class (transform, withFallback, withTimeout, asList, combine)
      // have two requirements that significantly complicate their design.
      // 1. Cancellation should propagate from the returned future to the input future(s).
      // 2. The returned futures shouldn't unnecessarily 'pin' their inputs after completion.
      //
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. src/cmd/cgo/doc.go

    identifiers not by parsing C code but by feeding carefully constructed
    programs into the system C compiler and interpreting the generated
    error messages, debug information, and object files. In practice,
    parsing these is significantly less work and more robust than parsing
    C source.
    
    Cgo first invokes gcc -E -dM on the preamble, in order to find out
    about simple #defines for constants and the like. These are recorded
    for later use.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    Because metadata verification can significantly increase the size of your configuration file, you may therefore want to disable verification of metadata.
    If you understand the risks of doing so, set the `<verify-metadata>` flag to `false` in the configuration file:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier.go

    	// precomputing some number of those and cache for future reuse.
    	precomputedProbabilities []string
    
    	// The following buffers are used to reuse memory and avoid allocations
    	// that are significantly impacting performance.
    	iptablesData             *bytes.Buffer
    	existingFilterChainsData *bytes.Buffer
    	filterChains             proxyutil.LineBuffer
    	filterRules              proxyutil.LineBuffer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
Back to top