Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for tl (0.03 sec)

  1. src/runtime/traceruntime.go

    func trace_userLog(id uint64, category, message string) {
    	tl := traceAcquire()
    	if !tl.ok() {
    		// Need to do this check because the caller won't have it.
    		return
    	}
    	tl.eventWriter(traceGoRunning, traceProcRunning).commit(traceEvUserLog, traceArg(id), tl.string(category), tl.uniqueString(message), tl.stack(3))
    	traceRelease(tl)
    }
    
    // traceThreadDestroy is called when a thread is removed from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  2. src/runtime/trace.go

    	// N.B. This will also emit a status event for this goroutine.
    	tl := traceAcquire()
    	tl.Gomaxprocs(gomaxprocs)  // Get this as early in the trace as possible. See comment in traceAdvance.
    	tl.STWStart(stwStartTrace) // We didn't trace this above, so trace it now.
    
    	// Record the fact that a GC is active, if applicable.
    	if gcphase == _GCmark || gcphase == _GCmarktermination {
    		tl.GCActive()
    	}
    
    	// Dump a snapshot of memory, if enabled.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. src/runtime/type.go

    	for _, md := range modules[1:] {
    		// Collect types from the previous module into typehash.
    	collect:
    		for _, tl := range prev.typelinks {
    			var t *_type
    			if prev.typemap == nil {
    				t = (*_type)(unsafe.Pointer(prev.types + uintptr(tl)))
    			} else {
    				t = prev.typemap[typeOff(tl)]
    			}
    			// Add to typehash if not seen before.
    			tlist := typehash[t.Hash]
    			for _, tcur := range tlist {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. src/path/filepath/path.go

    	bl := len(base)
    	tl := len(targ)
    	var b0, bi, t0, ti int
    	for {
    		for bi < bl && base[bi] != Separator {
    			bi++
    		}
    		for ti < tl && targ[ti] != Separator {
    			ti++
    		}
    		if !sameWord(targ[t0:ti], base[b0:bi]) {
    			break
    		}
    		if bi < bl {
    			bi++
    		}
    		if ti < tl {
    			ti++
    		}
    		b0 = bi
    		t0 = ti
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

            } catch (URISyntaxException e) {
                throw new IllegalArgumentException("could not make url use https", e);
            }
        }
    
        public static boolean isSecureUrl(URI url) {
            /*
             * TL;DR: http://127.0.0.1 will bypass this validation, http://localhost will fail this validation.
             *
             * Hundreds of Gradle's integration tests use a local web-server to test logic that relies upon
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

            } catch (URISyntaxException e) {
                throw new IllegalArgumentException("could not make url use https", e);
            }
        }
    
        public static boolean isSecureUrl(URI url) {
            /*
             * TL;DR: http://127.0.0.1 will bypass this validation, http://localhost will fail this validation.
             *
             * Hundreds of Gradle's integration tests use a local web-server to test logic that relies upon
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. src/time/zoneinfo_read.go

    			return nil, errBadData
    		}
    		zones[i].name = byteString(abbrev[b:])
    		if runtime.GOOS == "aix" && len(name) > 8 && (name[:8] == "Etc/GMT+" || name[:8] == "Etc/GMT-") {
    			// There is a bug with AIX 7.2 TL 0 with files in Etc,
    			// GMT+1 will return GMT-1 instead of GMT+1 or -01.
    			if name != "Etc/GMT+0" {
    				// GMT+0 is OK
    				zones[i].name = name[4:]
    			}
    		}
    	}
    
    	// Now the transition time info.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Client-TLSv12-RenegotiateOnce

    000001a0  90 bb 77 33 31 f2 28 5a  70 a5 c5 ef 91 91 27 22  |..w31.(Zp.....'"|
    000001b0  59 33 d5 22 78 8e 8f 07  91 3c 69 ec b9 81 be e8  |Y3."x....<i.....|
    000001c0  be bd 63 20 54 6c 2c 27  46 38 9a 45 06 4e aa b3  |..c Tl,'F8.E.N..|
    000001d0  37 93 72 6a 90 a6 18 14  88 6e 5b fc 54 44 48 a8  |7.rj.....n[.TDH.|
    000001e0  bc c6 86 52 a6 b8 a7 a4  02 04 91 e0 4b 28 4b dc  |...R........K(K.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. docs/en/docs/async.md

    Details about the `async def` syntax for *path operation functions* and some background about asynchronous code, concurrency, and parallelism.
    
    ## In a hurry?
    
    <abbr title="too long; didn't read"><strong>TL;DR:</strong></abbr>
    
    If you are using third party libraries that tell you to call them with `await`, like:
    
    ```Python
    results = await some_library()
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top