Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 45 for tracers (0.21 sec)

  1. tensorflow/c/c_api_function_test.cc

      }
    
      // Verify that stack traces of func is copied to graph function library.
      ASSERT_NE(func_stack_traces, nullptr);
      EXPECT_EQ(func_stack_traces->size(), 4);
      EXPECT_EQ(func_stack_traces->at("neg")->ToString({}), kNegStackToString);
      EXPECT_EQ(func_stack_traces->at("feed")->ToString({}), kFeedStackToString);
    
      // Verify that stack traces of grad_func is copied to graph function library.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  2. cmd/kubelet/app/server.go

    	otelsdkresource "go.opentelemetry.io/otel/sdk/resource"
    	semconv "go.opentelemetry.io/otel/semconv/v1.12.0"
    	oteltrace "go.opentelemetry.io/otel/trace"
    	noopoteltrace "go.opentelemetry.io/otel/trace/noop"
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/types"
    	utilnet "k8s.io/apimachinery/pkg/util/net"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. src/runtime/mprof.go

    	n := tracebackPCs(&u, 0, pcbuf)
    	r.Stack = make([]uintptr, n)
    	copy(r.Stack, pcbuf)
    }
    
    // Stack formats a stack trace of the calling goroutine into buf
    // and returns the number of bytes written to buf.
    // If all is true, Stack formats stack traces of all other goroutines
    // into buf after the trace for the current goroutine.
    func Stack(buf []byte, all bool) int {
    	var stw worldStop
    	if all {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	return setupTestCommon(t, comp, match, true)
    }
    
    // Starts CEL admission controller and sets up a plugin configured with it as well
    // as object trackers for manipulating the objects available to the system
    //
    // ParamTracker only knows the gvk `paramGVK`. If in the future we need to
    // support multiple types of params this function needs to be augmented
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top