Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LoadAndDelete (0.17 sec)

  1. api/go1.15.txt

    pkg regexp, method (*Regexp) SubexpIndex(string) int
    pkg strconv, func FormatComplex(complex128, uint8, int, int) string
    pkg strconv, func ParseComplex(string, int) (complex128, error)
    pkg sync, method (*Map) LoadAndDelete(interface{}) (interface{}, bool)
    pkg testing, method (*B) TempDir() string
    pkg testing, method (*T) Deadline() (time.Time, bool)
    pkg testing, method (*T) TempDir() string
    pkg testing, type TB interface, TempDir() string
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Jul 17 02:15:01 GMT 2020
    - 7.6K bytes
    - Viewed (0)
  2. internal/grid/connection.go

    		}
    		v, loaded := c.inStream.LoadAndDelete(muxID)
    		if loaded && v != nil {
    			gridLogIf(c.ctx, c.queueMsg(message{Op: OpDisconnectClientMux, MuxID: muxID}, nil))
    			v.close()
    		}
    	} else {
    		if debugPrint {
    			fmt.Println("deleteMux: disconnect outgoing mux", muxID)
    		}
    		v, loaded := c.outgoing.LoadAndDelete(muxID)
    		if loaded && v != nil {
    			if debugReqs {
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 42.6K bytes
    - Viewed (0)
Back to top