Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for slowdowns (0.08 sec)

  1. 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)
  2. 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)
  3. 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