Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 71 for dumpling (0.39 sec)

  1. src/internal/trace/reader_test.go

    	if err != nil {
    		t.Fatalf("dumping trace: %v", err)
    	}
    	var sb strings.Builder
    	tw, err := raw.NewTextWriter(&sb, version.Current)
    	if err != nil {
    		t.Fatalf("dumping trace: %v", err)
    	}
    	for {
    		ev, err := br.ReadEvent()
    		if err == io.EOF {
    			break
    		}
    		if err != nil {
    			t.Fatalf("dumping trace: %v", err)
    		}
    		if err := tw.WriteEvent(ev); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. src/runtime/heapdump.go

    	dumpint(m.Sys)
    	dumpint(m.Lookups)
    	dumpint(m.Mallocs)
    	dumpint(m.Frees)
    	dumpint(m.HeapAlloc)
    	dumpint(m.HeapSys)
    	dumpint(m.HeapIdle)
    	dumpint(m.HeapInuse)
    	dumpint(m.HeapReleased)
    	dumpint(m.HeapObjects)
    	dumpint(m.StackInuse)
    	dumpint(m.StackSys)
    	dumpint(m.MSpanInuse)
    	dumpint(m.MSpanSys)
    	dumpint(m.MCacheInuse)
    	dumpint(m.MCacheSys)
    	dumpint(m.BuckHashSys)
    	dumpint(m.GCSys)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/tracing_test.go

    }
    
    func fakeTracingSpec(provider *meshconfig.MeshConfig_ExtensionProvider, sampling float64, disableReporting bool,
    	useRequestIDForTraceSampling bool,
    ) *model.TracingConfig {
    	t := &model.TracingConfig{
    		ClientSpec: tracingSpec(provider, sampling, disableReporting, useRequestIDForTraceSampling),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 20:47:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/tracing.go

    func proxyConfigSamplingValue(config *meshconfig.ProxyConfig) float64 {
    	// PILOT_TRACE_SAMPLING
    	sampling := features.TraceSampling
    
    	// Tracing from default_config
    	if config.Tracing != nil && config.Tracing.Sampling != 0.0 {
    		sampling = config.Tracing.Sampling
    
    		if sampling > 100.0 {
    			sampling = 1.0
    		}
    	}
    	return sampling
    }
    
    func configureCustomTags(hcmTracing *hcm.HttpConnectionManager_Tracing,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. cluster/log-dump/log-dump.sh

      echo "Dumping logs from master locally to '${report_dir}'"
      dump_masters
      if [[ "${DUMP_ONLY_MASTER_LOGS:-}" == "true" ]]; then
        echo 'Skipping dumping of node logs'
        return
      fi
    
      # Copy logs from nodes to GCS directly or to artifacts dir locally (through SSH).
      if [[ -n "${gcs_artifacts_dir}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  6. pkg/test/framework/components/namespace/kube.go

    	if n.skipDump {
    		scopes.Framework.Debugf("=== Skip dumping Namespace %s State for %v...", n.name, ctx.ID())
    		return
    	}
    	scopes.Framework.Errorf("=== Dumping Namespace %s State for %v...", n.name, ctx.ID())
    
    	d, err := ctx.CreateTmpDirectory(n.name + "-state")
    	if err != nil {
    		scopes.Framework.Errorf("Unable to create directory for dumping %s contents: %v", n.name, err)
    		return
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. pkg/test/framework/components/istio/cleanup.go

    		f.Close()
    	}
    	return nil
    }
    
    func (i *istioImpl) Dump(ctx resource.Context) {
    	scopes.Framework.Errorf("=== Dumping Istio Deployment State for %v...", ctx.ID())
    	ns := i.cfg.SystemNamespace
    	d, err := ctx.CreateTmpDirectory("istio-state")
    	if err != nil {
    		scopes.Framework.Errorf("Unable to create directory for dumping Istio contents: %v", err)
    		return
    	}
    	g := errgroup.Group{}
    	g.Go(func() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. samples/bookinfo/src/details/details.rb

      incoming_headers = [
          # All applications should propagate x-request-id. This header is
          # included in access log statements and is used for consistent trace
          # sampling and log sampling decisions in Istio.
          'x-request-id',
    
          # Lightstep tracing header. Propagate this if you use lightstep tracing
          # in Istio (see
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. pkg/test/framework/testcontext.go

    	if c.suite.RequestTestDump() {
    		scopes.Framework.Debugf("Begin dumping testContext: %q", c.id)
    		// make sure we dump suite-level/top-level resources, but don't dump sibling tests or their children
    		for _, scope := range c.topLevelScopes() {
    			scope.dump(c, false)
    		}
    		c.scope.dump(c, true)
    		scopes.Framework.Debugf("Completed dumping testContext: %q", c.id)
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow_to_stablehlo/README.md

      using '?' for unknown sizes. For example, `input-arg-shapes=1,2::1,?`
      expresses argument shapes `[1,2]`, `[]` and `[1,?]`.
    * `--e`: Elide large elements attrs while dumping the output StableHLO.
    * `--output_filename`: Path to the output file where the textual StableHLO MLIR
      module will be written (default: stdout).
    
    
    ### Examples
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top