Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 39 of 39 for tracers (0.22 sec)

  1. src/runtime/traceback.go

    	print("created by ")
    	printFuncName(funcname(f))
    	if goid != 0 {
    		print(" in goroutine ", goid)
    	}
    	print("\n")
    	tracepc := pc // back up to CALL instruction for funcline.
    	if pc > f.entry() {
    		tracepc -= sys.PCQuantum
    	}
    	file, line := funcline(f, tracepc)
    	print("\t", file, ":", line)
    	if pc > f.entry() {
    		print(" +", hex(pc-f.entry()))
    	}
    	print("\n")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. cmd/erasure-object.go

    		fi, metaArr, onlineDisks, err = er.getObjectFileInfo(ctx, bucket, object, opts, true)
    		if err != nil {
    			return toObjectErr(err, bucket, object)
    		}
    	}
    	traceFn := globalLifecycleSys.trace(fi.ToObjectInfo(bucket, object, opts.Versioned || opts.VersionSuspended))
    
    	destObj, err := genTransitionObjName(bucket)
    	if err != nil {
    		return err
    	}
    
    	pr, pw := xioutil.WaitPipe()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Preconditions.java

     * which are <i>not the caller's fault</i>. Doing so is <b>not recommended</b> because it is
     * misleading to future readers of the code and of stack traces. See <a
     * href="https://github.com/google/guava/wiki/ConditionalFailuresExplained">Conditional failures
     * explained</a> in the Guava User Guide for more advice. Notably, {@link Verify} offers assertions
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Preconditions.java

     * which are <i>not the caller's fault</i>. Doing so is <b>not recommended</b> because it is
     * misleading to future readers of the code and of stack traces. See <a
     * href="https://github.com/google/guava/wiki/ConditionalFailuresExplained">Conditional failures
     * explained</a> in the Guava User Guide for more advice. Notably, {@link Verify} offers assertions
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    		// Do not include local development, so that people working in the
    		// main branch for day-to-day work on the Go toolchain itself can
    		// still have full paths for stack traces for compiler crashes and the like.
    		env = append(env, "GOFLAGS=-trimpath -ldflags=-w -gcflags=cmd/...=-dwarf=false")
    	}
    	return env
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. src/runtime/pprof/pprof_test.go

    	t.Cleanup(func() {
    		wait <- struct{}{}
    	})
    	<-wait
    }
    
    // produceProfileEvents produces pprof events at the given stack depth and then
    // blocks in goroutineDeep until the test completes. The stack traces are
    // guaranteed to have exactly the desired depth with produceProfileEvents as
    // their root frame which is expected by TestProfilerStackDepth.
    func produceProfileEvents(t *testing.T, depth int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

                                         func::FuncOp func) {
      // Examine all StatefulPartitionedCall ops that have resources as return
      // types. If the returned resource traces back to an input argument for the
      // SPC, then replace uses of the returned copy with the original input.
      //
      // Note: This does not descend through nested SCPs.
      auto ComesFromBlockArgNumber = [](Value val) -> int {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	}
    	osInterface := &containertest.FakeOS{}
    	manager, err := newFakeKubeRuntimeManager(fakeRuntimeService, fakeImageService, machineInfo, osInterface, &containertest.FakeRuntimeHelper{}, keyring, noopoteltrace.NewTracerProvider().Tracer(""))
    	return fakeRuntimeService, fakeImageService, manager, err
    }
    
    // sandboxTemplate is a sandbox template to create fake sandbox.
    type sandboxTemplate struct {
    	pod         *v1.Pod
    	attempt     uint32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    	    Writes test binary as -c would.
    
    	-mutexprofilefraction n
    	    Sample 1 in n stack traces of goroutines holding a
    	    contended mutex.
    
    	-outputdir directory
    	    Place output files from profiling in the specified directory,
    	    by default the directory in which "go test" is running.
    
    	-trace trace.out
    	    Write an execution trace to the specified file before exiting.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top