Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 102 for trace_0 (0.15 sec)

  1. src/runtime/trace/annotation.go

    	// can be used across trace enable/disable boundaries,
    	// which complicates the problem.
    	//
    	// For example, consider the following scenario:
    	//   - trace is enabled.
    	//   - trace.WithRegion is called, so a new context ctx
    	//     with a new region is created.
    	//   - trace is disabled.
    	//   - trace is enabled again.
    	//   - trace APIs with the ctx is called. Is the ID in the task
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. internal/grid/manager.go

    	Outgoing     func(n int64)               // Record outgoing bytes.
    	BlockConnect chan struct{}               // If set, incoming and outgoing connections will be blocked until closed.
    	TraceTo      *pubsub.PubSub[madmin.TraceInfo, madmin.TraceType]
    }
    
    // NewManager creates a new grid manager
    func NewManager(ctx context.Context, o ManagerOptions) (*Manager, error) {
    	found := false
    	if o.AuthRequest == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    		if peer == nil {
    			continue
    		}
    		peer.Trace(ctx, traceCh, traceOpts)
    	}
    
    	keepAliveTicker := time.NewTicker(time.Second)
    	defer keepAliveTicker.Stop()
    
    	for {
    		select {
    		case entry := <-traceCh:
    			if _, err := w.Write(entry); err != nil {
    				return
    			}
    			grid.PutByteBuffer(entry)
    			if len(traceCh) == 0 {
    				// Flush if nothing is queued
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. cmd/bucket-lifecycle.go

    			case jentry:
    				transitionLogIf(es.ctx, deleteObjectFromRemoteTier(es.ctx, v.ObjName, v.VersionID, v.TierName))
    			case freeVersionTask:
    				oi := v.ObjectInfo
    				traceFn := globalLifecycleSys.trace(oi)
    				if !oi.TransitionedObject.FreeVersion {
    					// nothing to be done
    					return
    				}
    
    				ignoreNotFoundErr := func(err error) error {
    					switch {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  5. pkg/bootstrap/testdata/tracing_opencensusagent_golden.json

                  }
                ]
              }
            ]
          }
        ]
      }
      ,
      "tracing": {
        "http": {
          "name": "envoy.tracers.opencensus",
          "typed_config": {
            "@type": "type.googleapis.com/envoy.config.trace.v3.OpenCensusConfig",
            "ocagent_exporter_enabled": true,
            "ocagent_address": "dns://my-oca/endpoint",
            "incoming_trace_context": ["TRACE_CONTEXT"],
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. releasenotes/notes/drop-legacy-istio-trace-tags.yaml

    John Howard <******@****.***> 1682564684 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 27 03:04:44 UTC 2023
    - 143 bytes
    - Viewed (0)
  7. src/internal/trace/testdata/testprog/cpu-profile.go

    	func() {
    		// Create a region in the execution trace. Set and clear goroutine
    		// labels fully within that region, so we know that any CPU profile
    		// sample with the label must also be eligible for inclusion in the
    		// execution trace.
    		ctx := context.Background()
    		defer trace.StartRegion(ctx, "cpuHogger").End()
    		pprof.Do(ctx, pprof.Labels("tracing", "on"), func(ctx context.Context) {
    			cpuHogger(cpuHog1, &salt1, dur)
    		})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. pkg/bootstrap/testdata/tracing_datadog_golden.json

                  }
                ]
              }
            ]
          }
        ]
      }
      ,
      "tracing": {
        "http": {
          "name": "envoy.tracers.datadog",
          "typed_config": {
            "@type": "type.googleapis.com/envoy.config.trace.v3.DatadogConfig",
            "collector_cluster": "datadog_agent",
            "service_name": "istio-proxy"
          }
        }
      }
      
      
      ,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. cmd/peer-rest-client.go

    				time.Sleep(5 * time.Second)
    			}
    		}
    	}()
    }
    
    // Trace - send http trace request to peer nodes
    func (client *peerRESTClient) Trace(ctx context.Context, traceCh chan<- []byte, traceOpts madmin.ServiceTraceOpts) {
    	go func() {
    		for {
    			// Blocks until context is canceled or an error occurs.
    			client.doTrace(ctx, traceCh, traceOpts)
    			select {
    			case <-ctx.Done():
    				return
    			default:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  10. src/runtime/traceruntime.go

    	// Perform a traceAcquire/traceRelease on behalf of mp to
    	// synchronize with the tracer trying to flush our buffer
    	// as well.
    	seq := mp.trace.seqlock.Add(1)
    	if debugTraceReentrancy && seq%2 != 1 {
    		throw("bad use of trace.seqlock or tracer is reentrant")
    	}
    	systemstack(func() {
    		lock(&trace.lock)
    		for i := range mp.trace.buf {
    			if mp.trace.buf[i] != nil {
    				// N.B. traceBufFlush accepts a generation, but it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top