Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 63 for tl (0.21 sec)

  1. pkg/config/schema/codegen/templates/clients.go.tmpl

    	{{- end }}
    {{- end }}
      default:
        panic(fmt.Sprintf("Unknown type %T", ptr.Empty[T]()))
    	}
    }
    
    func GetClient[T, TL runtime.Object](c ClientGetter, namespace string) ktypes.ReadWriteAPI[T, TL] {
    	switch any(ptr.Empty[T]()).(type) {
    {{- range .Entries }}
    	{{- if not .Resource.Synthetic }}
    	case *{{ .IstioAwareClientImport }}.{{ .Resource.Kind }}:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. src/runtime/tracebuf.go

    type traceWriter struct {
    	traceLocker
    	*traceBuf
    }
    
    // write returns an a traceWriter that writes into the current M's stream.
    func (tl traceLocker) writer() traceWriter {
    	return traceWriter{traceLocker: tl, traceBuf: tl.mp.trace.buf[tl.gen%2]}
    }
    
    // unsafeTraceWriter produces a traceWriter that doesn't lock the trace.
    //
    // It should only be used in contexts where either:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/net/platform_test.go

    		out, _ := exec.Command("oslevel", "-s").Output()
    		if len(out) >= len("7200-XX-ZZ-YYMM") { // AIX 7.2, Tech Level XX, Service Pack ZZ, date YYMM
    			aixVer := string(out[:4])
    			tl, _ := strconv.Atoi(string(out[5:7]))
    			unixEnabledOnAIX = aixVer > "7200" || (aixVer == "7200" && tl >= 2)
    		}
    	}
    }
    
    // testableNetwork reports whether network is testable on the current
    // platform configuration.
    func testableNetwork(network string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  7. src/runtime/tracecpu.go

    			// we would still want to do a goroutine-level sleep in between
    			// reads to avoid frequent wakeups.
    			trace.cpuSleep.sleep(100_000_000)
    
    			tl := traceAcquire()
    			if !tl.ok() {
    				// Tracing disabled.
    				break
    			}
    			keepGoing := traceReadCPU(tl.gen)
    			traceRelease(tl)
    			if !keepGoing {
    				break
    			}
    		}
    		done <- struct{}{}
    	}()
    	trace.cpuLogDone = done
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/net/nettest/nettest.go

    		out, _ := exec.Command("oslevel", "-s").Output()
    		if len(out) >= len("7200-XX-ZZ-YYMM") { // AIX 7.2, Tech Level XX, Service Pack ZZ, date YYMM
    			ver := string(out[:4])
    			tl, _ := strconv.Atoi(string(out[5:7]))
    			unStrmDgramEnabled = ver > "7200" || (ver == "7200" && tl >= 2)
    		}
    	default:
    		unStrmDgramEnabled = true
    	}
    }
    
    func unixStrmDgramEnabled() bool {
    	stackOnce.Do(probeStack)
    	return unStrmDgramEnabled
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. pilot/pkg/xds/cds_test.go

    				if cluster == nil {
    					t.Fatal("cluster not found")
    				}
    				cluster.GetTransportSocket().GetTypedConfig()
    				tl := xdstest.UnmarshalAny[tls.UpstreamTlsContext](t, cluster.GetTransportSocket().GetTypedConfig())
    				names := sets.New[string]()
    				// nolint: staticcheck
    				for _, n := range tl.GetCommonTlsContext().GetCombinedValidationContext().GetDefaultValidationContext().GetMatchSubjectAltNames() {
    					names.Insert(n.GetExact())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 02:06:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. docs/language_names.yml

    so: Soomaaliga
    sq: shqip
    sr: српски језик
    ss: SiSwati
    st: Sesotho
    su: Basa Sunda
    sv: svenska
    sw: Kiswahili
    ta: தமிழ்
    te: తెలుగు
    tg: тоҷикӣ
    th: ไทย
    ti: ትግርኛ
    tk: Türkmen
    tl: Wikang Tagalog
    tn: Setswana
    to: faka Tonga
    tr: Türkçe
    ts: Xitsonga
    tt: татар теле
    tw: Twi
    ty: Reo Tahiti
    ug: ئۇيغۇرچە‎
    uk: українська мова
    ur: اردو
    uz: Ўзбек
    ve: Tshivenḓa
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:42:53 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top