Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for slowdowns (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    			// a conflict and is faster.
    			//
    			// We could return an error here and rely on
    			// backoff+retry, but scheduling attempts are expensive
    			// and the backoff delay would cause a (small)
    			// slowdown. Therefore we fall back to SSA here if needed.
    			//
    			// Using SSA instead of Get+Update has the advantage that
    			// there is no delay for the Get. SSA is safe because only
    			// the scheduler updates these fields.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  7. ChangeLog.md

    - [`KT-64353`](https://youtrack.jetbrains.com/issue/KT-64353) Improve reuse of Build Tools Api's classloader
    - [`KT-66912`](https://youtrack.jetbrains.com/issue/KT-66912) Parallel compilation slowdown due to synchronization
    - [`KT-63005`](https://youtrack.jetbrains.com/issue/KT-63005) Avoid registering KMP related compatibility/disambiguration rules for pure JVM/Android projects
    
    #### Fixes
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top