Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 63 for tl (0.07 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. internal/logger/targets.go

    	return &targetsList{}
    }
    
    func (tl *targetsList) get() []Target {
    	tl.mu.RLock()
    	defer tl.mu.RUnlock()
    
    	return tl.list
    }
    
    func (tl *targetsList) add(t Target) {
    	tl.mu.Lock()
    	defer tl.mu.Unlock()
    
    	tl.list = append(tl.list, t)
    }
    
    func (tl *targetsList) set(tgts []Target) {
    	tl.mu.Lock()
    	defer tl.mu.Unlock()
    
    	tl.list = tgts
    }
    
    var (
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:44:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. pkg/kube/kclient/clienttest/direct.go

    	"istio.io/istio/pkg/kube/kclient"
    	"istio.io/istio/pkg/test"
    )
    
    type directClient[T controllers.Object, PT any, TL runtime.Object] struct {
    	kclient.Writer[T]
    	t      test.Failer
    	client kube.Client
    }
    
    func (d *directClient[T, PT, TL]) Get(name, namespace string) T {
    	api := kubeclient.GetClient[T, TL](d.client, namespace)
    	res, err := api.Get(context.Background(), name, metav1.GetOptions{})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/TestLauncherTaskExecutionCrossVersionSpec.groovy

        def "old Gradle version ignores task execution request"() {
            when:
            launchTestWithTestFilter { tl ->
                tl.forTasks(':help')
            }
    
            then:
            !taskExecuted(':help')
        }
    
        def "can execute task"() {
            when:
            launchTestWithTestFilter { tl ->
                tl.forTasks(':help')
            }
    
            then:
            taskExecuted(':help')
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  5. src/runtime/traceallocfree.go

    // span containing it.
    func (tl traceLocker) HeapObjectAlloc(addr uintptr, typ *abi.Type) {
    	tl.eventWriter(traceGoRunning, traceProcRunning).commit(traceEvHeapObjectAlloc, traceHeapObjectID(addr), tl.rtype(typ))
    }
    
    // HeapObjectFree records that an object at addr is about to be freed.
    func (tl traceLocker) HeapObjectFree(addr uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:32:51 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. src/runtime/traceevent.go

    func (tl traceLocker) eventWriter(goStatus traceGoStatus, procStatus traceProcStatus) traceEventWriter {
    	w := tl.writer()
    	if pp := tl.mp.p.ptr(); pp != nil && !pp.trace.statusWasTraced(tl.gen) && pp.trace.acquireStatus(tl.gen) {
    		w = w.writeProcStatus(uint64(pp.id), procStatus, pp.trace.inSweep)
    	}
    	if gp := tl.mp.curg; gp != nil && !gp.trace.statusWasTraced(tl.gen) && gp.trace.acquireStatus(tl.gen) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. pkg/config/schema/kubeclient/resources.gen.go

    	case *k8sioapicorev1.ConfigMap:
    		return c.Kube().CoreV1().ConfigMaps(namespace).(ktypes.ReadWriteAPI[T, TL])
    	case *k8sioapiextensionsapiserverpkgapisapiextensionsv1.CustomResourceDefinition:
    		return c.Ext().ApiextensionsV1().CustomResourceDefinitions().(ktypes.ReadWriteAPI[T, TL])
    	case *k8sioapiappsv1.DaemonSet:
    		return c.Kube().AppsV1().DaemonSets(namespace).(ktypes.ReadWriteAPI[T, TL])
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top