Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for tl (0.32 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. tensorflow/compiler/mlir/tensorflow/tests/replicate_tensor_list_init_ops.mlir

      // CHECK: %[[RESULT2:.*]] = "tf.TensorListReserve"
      // CHECK: tf.WhileRegion
      // CHECK-SAME: (%[[RESULT1]], %[[RESULT0]])
      %tl = "tf.TensorListReserve"(%elem_shape, %size) : (tensor<2xi32>, tensor<i32>) -> tensor<!tf_type.variant<tensor<?x1xf32>>>
      %while:2 = "tf.WhileRegion"(%tl, %tl) ({
        ^bb0(%barg1: tensor<!tf_type.variant<tensor<?x1xf32>>>, %barg2: tensor<!tf_type.variant<tensor<?x1xf32>>>): // no predeceessors
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Jan 22 17:28:34 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/link/internal/ld/typelink.go

    		} else if ldr.IsItab(s) {
    			itabs = append(itabs, s)
    		}
    	}
    	sort.Sort(typelinks)
    
    	tl := ldr.CreateSymForUpdate("runtime.typelink", 0)
    	tl.SetType(sym.STYPELINK)
    	ldr.SetAttrLocal(tl.Sym(), true)
    	tl.SetSize(int64(4 * len(typelinks)))
    	tl.Grow(tl.Size())
    	relocs := tl.AddRelocs(len(typelinks))
    	for i, s := range typelinks {
    		r := relocs.At(i)
    		r.SetSym(s.Type)
    		r.SetOff(int32(i * 4))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 03 21:13:25 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/replicate-tensor-list-init-ops.mlir

        %tl = "tf.TensorListReserve"(%elem_shape, %size) : (tensor<i32>, tensor<i32>) -> tensor<!tf_type.variant<tensor<*xf32>>>
    
        %idx = "tf.Const"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
        %elem_1 = "tf.Const"() {value = dense<10.0> : tensor<8xf32>} : () -> tensor<8xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 03 09:30:08 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. 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)
Back to top