Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Zelaya (0.22 sec)

  1. src/arena/arena.go

    of Go values and free that space manually all at once, safely. The purpose
    of this functionality is to improve efficiency: manually freeing memory
    before a garbage collection delays that cycle. Less frequent cycles means
    the CPU cost of the garbage collector is incurred less frequently.
    
    This functionality in this package is mostly captured in the Arena type.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Oct 12 20:23:36 GMT 2022
    - 4.3K bytes
    - Viewed (0)
  2. misc/wasm/wasm_exec.js

    						sp >>>= 0;
    						const msec = (new Date).getTime();
    						setInt64(sp + 8, msec / 1000);
    						this.mem.setInt32(sp + 16, (msec % 1000) * 1000000, true);
    					},
    
    					// func scheduleTimeoutEvent(delay int64) int32
    					"runtime.scheduleTimeoutEvent": (sp) => {
    						sp >>>= 0;
    						const id = this._nextCallbackTimeoutID;
    						this._nextCallbackTimeoutID++;
    						this._scheduledTimeouts.set(id, setTimeout(
    JavaScript
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon May 22 17:47:47 GMT 2023
    - 16.3K bytes
    - Viewed (1)
  3. api/go1.txt

    pkg image/gif, func DecodeAll(io.Reader) (*GIF, error)
    pkg image/gif, func DecodeConfig(io.Reader) (image.Config, error)
    pkg image/gif, type GIF struct
    pkg image/gif, type GIF struct, Delay []int
    pkg image/gif, type GIF struct, Image []*image.Paletted
    pkg image/gif, type GIF struct, LoopCount int
    pkg image/jpeg, const DefaultQuality ideal-int
    pkg image/jpeg, func Decode(io.Reader) (image.Image, error)
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  4. misc/ios/go_ios_exec.go

    		<-errChan
    	}
    	// Dial localhost:3222 to ensure the proxy is ready.
    	delay := time.Second / 4
    	for attempt := 0; attempt < 5; attempt++ {
    		conn, err := net.DialTimeout("tcp", "localhost:3222", 5*time.Second)
    		if err == nil {
    			conn.Close()
    			return closer, nil
    		}
    		select {
    		case <-time.After(delay):
    			delay *= 2
    		case err := <-errChan:
    			return nil, err
    		}
    	}
    	closer()
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
  5. api/go1.11.txt

    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_DEBUG = 6
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_DEBUG ideal-int
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT = 13
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_DELAY_IMPORT ideal-int
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_EXCEPTION = 3
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_EXCEPTION ideal-int
    pkg debug/pe, const IMAGE_DIRECTORY_ENTRY_EXPORT = 0
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 22 03:48:56 GMT 2018
    - 25K bytes
    - Viewed (2)
  6. doc/go1.22.html

          a Go program.
          For instance, if 100 goroutines are blocked on a mutex for 10 milliseconds, a mutex profile will
          now record 1 second of delay instead of 10 milliseconds of delay.
        </p>
    
        <p><!-- https://go.dev/issue/57071 -->
          Mutex profiles also now include contention on runtime-internal locks in addition to
    HTML
    - Registered: Tue Feb 06 11:13:10 GMT 2024
    - Last Modified: Wed Jan 31 20:51:56 GMT 2024
    - 45.6K bytes
    - Viewed (0)
Back to top