Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for slowAbs (0.14 sec)

  1. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/MonotonicClock.java

     * <p>
     * When the system wall clock jumps back in time, this clock will effectively slow down until it is back in sync.
     * All syncing timestamps will be the same as the previously issued timestamp.
     * The rate by which this clock slows, and therefore the time it takes to resync,
     * is determined by how frequently the clock is read.
     * If timestamps are only requested at a rate greater than the sync interval,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. src/internal/trace/reader_test.go

    	"testing"
    
    	"internal/trace"
    	"internal/trace/raw"
    	"internal/trace/testtrace"
    	"internal/trace/version"
    )
    
    var (
    	logEvents  = flag.Bool("log-events", false, "whether to log high-level events; significantly slows down tests")
    	dumpTraces = flag.Bool("dump-traces", false, "dump traces even on success")
    )
    
    func TestReaderGolden(t *testing.T) {
    	matches, err := filepath.Glob("./testdata/tests/*.test")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/inspect.adoc

    Use the Profiler to produce build scans. Or combine it with method profilers like JProfiler and YourKit.
    These profilers can help you find inefficient algorithms in custom plugins.
    If you find that something in Gradle itself slows down your build, don't hesitate to send a profiler snapshot to ******@****.***.
    
    == Performance categories
    
    Both build scans and local profile reports break down build execution into the same categories.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/value.go

    	v.argstorage[1] = nil
    	v.argstorage[2] = nil
    	v.Args = v.argstorage[:0]
    }
    
    // reset is called from most rewrite rules.
    // Allowing it to be inlined increases the size
    // of cmd/compile by almost 10%, and slows it down.
    //
    //go:noinline
    func (v *Value) reset(op Op) {
    	if v.InCache {
    		v.Block.Func.unCache(v)
    	}
    	v.Op = op
    	v.resetArgs()
    	v.AuxInt = 0
    	v.Aux = nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableSet.java

         * determined experimentally to match our desired probability of false positives.
         */
        // NB: yes, this is surprisingly high, but that's what the experiments said was necessary
        // Raising this number slows the worst-case contains behavior, speeds up hashFloodingDetected,
        // and reduces the false-positive probability.
        static final int MAX_RUN_MULTIPLIER = 13;
    
        /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 08 03:01:02 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  6. src/strings/strings.go

    	for end, rune := range s {
    		if f(rune) {
    			if start >= 0 {
    				spans = append(spans, span{start, end})
    				// Set start to a negative value.
    				// Note: using -1 here consistently and reproducibly
    				// slows down this code by a several percent on amd64.
    				start = ^start
    			}
    		} else {
    			if start < 0 {
    				start = end
    			}
    		}
    	}
    
    	// Last field might end at EOF.
    	if start >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  7. src/encoding/json/encode.go

    			start = i
    			continue
    		}
    		// TODO(https://go.dev/issue/56948): Use generic utf8 functionality.
    		// For now, cast only a small portion of byte slices to a string
    		// so that it can be stack allocated. This slows down []byte slightly
    		// due to the extra copy, but keeps string performance roughly the same.
    		n := len(src) - i
    		if n > utf8.UTFMax {
    			n = utf8.UTFMax
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  8. pkg/kube/client.go

    	return c.version.Get()
    }
    
    func (c *client) ClusterID() cluster.ID {
    	return c.clusterID
    }
    
    // Wait for cache sync immediately, rather than with 100ms delay which slows tests
    // See https://github.com/kubernetes/kubernetes/issues/95262#issuecomment-703141573
    func fastWaitForCacheSync(stop <-chan struct{}, informerFactory informerfactory.InformerFactory) bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  9. src/cmd/dist/test.go

    			pkgs:     []string{"flag", "net", "os", "os/exec", "encoding/gob"},
    		})
    	// We don't want the following line, because it
    	// slows down all.bash (by 10 seconds on my laptop).
    	// The race builder should catch any error here, but doesn't.
    	// TODO(iant): Figure out how to catch this.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top