Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for slowdowns (0.12 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/inspector.go

    func (in *Inspector) Preorder(types []ast.Node, f func(ast.Node)) {
    	// Because it avoids postorder calls to f, and the pruning
    	// check, Preorder is almost twice as fast as Nodes. The two
    	// features seem to contribute similar slowdowns (~1.4x each).
    
    	mask := maskOf(types)
    	for i := 0; i < len(in.events); {
    		ev := in.events[i]
    		if ev.index > i {
    			// push
    			if ev.typ&mask != 0 {
    				f(ev.node)
    			}
    			pop := ev.index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    	// 48. Otherwise, it would be 60 in order to handle mmap addresses
    	// (in range 0x0a00000000000000 - 0x0afffffffffffff). But in this
    	// case, the memory reserved in (s *pageAlloc).init for chunks
    	// is causing important slowdowns.
    	//
    	// On other platforms, the user address space is contiguous
    	// and starts at 0, so no offset is necessary.
    	arenaBaseOffset = 0xffff800000000000*goarch.IsAmd64 + 0x0a00000000000000*goos.IsAix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/log/slog/internal/ignorepc.go

    // license that can be found in the LICENSE file.
    
    package internal
    
    // If IgnorePC is true, do not invoke runtime.Callers to get the pc.
    // This is solely for benchmarking the slowdown from runtime.Callers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 21 20:55:33 UTC 2023
    - 338 bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/DefaultMutationGuard.java

         * It looks like CMS does a good job for removing the unused entries from the ThreadLocalMap, though G1 does not.
         * So if you are running builds in quick succession, e.g. for profiling, there can be a quick slowdown after some time.
         *
         * This methods removes the elements from the ThreadLocalMap when possible, thus avoiding the problem.
         *
         * See https://github.com/gradle/gradle/issues/13835.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 22 19:47:53 UTC 2022
    - 3K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.12.md

    ([#63176](https://github.com/kubernetes/kubernetes/pull/63176), [@bswartz](https://github.com/bswartz))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  6. cmd/object-api-errors.go

    type StorageFull struct{}
    
    func (e StorageFull) Error() string {
    	return "Storage reached its minimum free drive threshold."
    }
    
    // SlowDown  too many file descriptors open or backend busy .
    type SlowDown struct{}
    
    func (e SlowDown) Error() string {
    	return "Please reduce your request rate"
    }
    
    // RQErrType reason for read quorum error.
    type RQErrType int
    
    const (
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 22:19:00 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  7. pkg/webhooks/webhookpatch.go

    		// If there is a conflict beyond this, it means Istiods are seeing different ca certs and are in inconsistent
    		// state for longer duration. Slowdown the retries, so that we do not overload kube api server and etcd.
    		controllers.WithRateLimiter(workqueue.NewItemFastSlowRateLimiter(100*time.Millisecond, 1*time.Minute, 5)),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 28 00:36:38 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. src/index/suffixarray/sais.go

    // For example, running on 50 MB of Go source code, induceSubL_8_32
    // (which runs only once, at the top level of the recursion)
    // takes 0.44s, while on 50 MB of random input, it takes 2.55s.
    // Nearly all the relative slowdown is explained by the text access:
    //
    //		c0, c1 := text[k-1], text[k]
    //
    // That line runs for 0.23s on the Go text and 2.02s on random text.
    
    //go:generate go run gen.go
    
    package suffixarray
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/prove.go

    					logicVars = make(map[*Block][]*Value)
    				}
    				logicVars[b] = append(logicVars[b], v)
    			case OpOr64, OpOr32, OpOr16, OpOr8:
    				// TODO: investigate how to always add facts without much slowdown, see issue #57959.
    				if v.Args[0].isGenericIntConst() {
    					ft.update(b, v, v.Args[0], unsigned, gt|eq)
    				}
    				if v.Args[1].isGenericIntConst() {
    					ft.update(b, v, v.Args[1], unsigned, gt|eq)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  10. src/runtime/asm_ppc64x.s

    	// Make it SPWRITE to stop unwinding. (See issue 54332)
    	// Use OR R0, R1 instead of MOVD R1, R1 as the MOVD instruction
    	// has a special affect on Power8,9,10 by lowering the thread 
    	// priority and causing a slowdown in execution time
    
    	OR	R0, R1
    	MOVD	R0, R11
    	BR	runtime·morestack(SB)
    
    // reflectcall: call a function with the given argument list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
Back to top