Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 80 for tl (0.03 sec)

  1. src/runtime/iface_test.go

    type I1 interface {
    	Method1()
    }
    
    type I2 interface {
    	Method1()
    	Method2()
    }
    
    type TS uint16
    type TM uintptr
    type TL [2]uintptr
    
    func (TS) Method1() {}
    func (TS) Method2() {}
    func (TM) Method1() {}
    func (TM) Method2() {}
    func (TL) Method1() {}
    func (TL) Method2() {}
    
    type T8 uint8
    type T16 uint16
    type T32 uint32
    type T64 uint64
    type Tstr string
    type Tslice []byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tensor_list_ops_decomposition.mlir

      // CHECK-NEXT: %[[ZERO:.*]] = "tf.Const"() <{value = dense<0> : tensor<1xi32>}> : () -> tensor<1xi32>
      %tl = "tf.EmptyTensorList"(%elem_shape, %max_size) : (tensor<0xi32>, tensor<i32>) -> tensor<!tf_type.variant<tensor<f32>>>
      %id = "tf.Identity"(%tl) : (tensor<!tf_type.variant<tensor<f32>>>) -> tensor<!tf_type.variant<tensor<f32>>>
      // CHECK-NEXT: %[[PUSHVAL:.*]] = "tf._SomeOp"()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 38.6K bytes
    - Viewed (0)
  3. pilot/test/xdstest/extract.go

    	for _, s := range sockets {
    		if s.GetTypedConfig().TypeUrl != TypeName[*tls.UpstreamTlsContext]() {
    			continue
    		}
    		tl := UnmarshalAny[tls.UpstreamTlsContext](t, s.GetTypedConfig())
    		resourceNames.Insert(tl.GetCommonTlsContext().GetCombinedValidationContext().GetValidationContextSdsSecretConfig().GetName())
    		for _, s := range tl.GetCommonTlsContext().GetTlsCertificateSdsSecretConfigs() {
    			resourceNames.Insert(s.GetName())
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  4. pkg/kube/kubetypes/types.go

    type ReadAPI[T runtime.Object, TL runtime.Object] interface {
    	Get(ctx context.Context, name string, opts metav1.GetOptions) (T, error)
    	List(ctx context.Context, opts metav1.ListOptions) (TL, error)
    	Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
    }
    
    // ReadWriteAPI exposes a generic API for read and write operations.
    type ReadWriteAPI[T runtime.Object, TL runtime.Object] interface {
    	ReadAPI[T, TL]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. src/internal/xcoff/file_test.go

    		fn := len(f.Sections)
    		if tn != fn {
    			t.Errorf("open %s: len(Sections) = %d, want %d", tt.file, fn, tn)
    		}
    		tl := tt.needed
    		fl, err := f.ImportedLibraries()
    		if err != nil {
    			t.Error(err)
    		}
    		if !reflect.DeepEqual(tl, fl) {
    			t.Errorf("open %s: loader import = %v, want %v", tt.file, tl, fl)
    		}
    	}
    }
    
    func TestOpenFailure(t *testing.T) {
    	filename := "file.go"    // not an XCOFF object file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 10 18:52:31 UTC 2018
    - 3K bytes
    - Viewed (0)
  6. 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)
  7. test/complit.go

    	a, b int
    }
    
    func NewP(a, b int) *P {
    	return &P{a, b}
    }
    
    func main() {
    	var t T
    	t = T{0, 7.2, "hi", &t}
    
    	var tp *T
    	tp = &T{0, 7.2, "hi", &t}
    
    	tl := &T{i: 0, next: &T{i: 1, next: &T{i: 2, next: &T{i: 3, next: &T{i: 4}}}}}
    	teq(tl, 5)
    
    	a1 := []int{1, 2, 3}
    	if len(a1) != 3 {
    		panic("a1")
    	}
    	a2 := [10]int{1, 2, 3}
    	if len(a2) != 10 || cap(a2) != 10 {
    		panic("a2")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 02:19:43 UTC 2012
    - 1.7K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top