Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 640 for span1 (0.07 sec)

  1. src/runtime/traceallocfree.go

    		throw("traceSnapshotMemory: tracing is not enabled")
    	}
    
    	// Write out all the heap spans and heap objects.
    	for _, s := range mheap_.allspans {
    		if s.state.get() == mSpanDead {
    			continue
    		}
    		// It's some kind of span, so trace that it exists.
    		trace.SpanExists(s)
    
    		// Write out allocated objects if it's a heap span.
    		if s.state.get() != mSpanInUse {
    			continue
    		}
    
    		// Find all allocated objects.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:32:51 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/MultiInputStreamTest.java

        assertEquals(150, result.length);
      }
    
      private void joinHelper(Integer... spans) throws Exception {
        List<ByteSource> sources = Lists.newArrayList();
        int start = 0;
        for (Integer span : spans) {
          sources.add(newByteSource(start, span));
          start += span;
        }
        ByteSource joined = ByteSource.concat(sources);
        assertTrue(newByteSource(0, start).contentEquals(joined));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 4.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/resources/org/gradle/reporting/report.js

        }
    
        function findCodeBlocks() {
            var spans = document.getElementById("tabs").getElementsByTagName("span");
            var codeBlocks = [];
            for (var i = 0; i < spans.length; ++i) {
                if (spans[i].className.indexOf("code") >= 0) {
                    codeBlocks.push(spans[i]);
                }
            }
            return codeBlocks;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 24 16:08:08 UTC 2014
    - 5.1K bytes
    - Viewed (0)
  4. tests/integration/telemetry/tracing/zipkin/server_tracing_test.go

    	"istio.io/istio/tests/integration/telemetry/tracing"
    )
    
    // TestServerTracing exercises the trace generation features of Istio, based on the Envoy Trace driver for zipkin.
    // The test verifies that all expected spans (a client span and a server span for each service call in the sample bookinfo app)
    // are generated and that they are all a part of the same distributed trace with correct hierarchy and name.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/runtime/mbitmap.go

    	}
    	return tp
    }
    
    // objBase returns the base pointer for the object containing addr in span.
    //
    // Assumes that addr points into a valid part of span (span.base() <= addr < span.limit).
    //
    //go:nosplit
    func (span *mspan) objBase(addr uintptr) uintptr {
    	return span.base() + span.objIndex(addr)*span.elemsize
    }
    
    // bulkBarrierPreWrite executes a write barrier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  6. src/runtime/mstats.go

    	// Stacks are not considered part of the heap, but the runtime
    	// can reuse a span of heap memory for stack memory, and
    	// vice-versa.
    
    	// StackInuse is bytes in stack spans.
    	//
    	// In-use stack spans have at least one stack in them. These
    	// spans can only be used for other stacks of the same size.
    	//
    	// There is no StackIdle because unused stack spans are
    	// returned to the heap (and hence counted toward HeapIdle).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  7. tests/integration/telemetry/tracing/zipkin/client_tracing_test.go

    )
    
    // TestClientTracing exercises the trace generation features of Istio, based on the Envoy Trace driver for zipkin using
    // client initiated tracing using envoy traceheader.
    // The test verifies that all expected spans (a client span and a server span for each service call in the sample bookinfo app)
    // are generated and that they are all a part of the same distributed trace with correct hierarchy and name.
    func TestClientTracing(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. src/runtime/mgc.go

    // The heap is swept span-by-span both lazily (when a goroutine needs another span)
    // and concurrently in a background goroutine (this helps programs that are not CPU bound).
    // At the end of STW mark termination all spans are marked as "needs sweeping".
    //
    // The background sweeper goroutine simply sweeps spans one-by-one.
    //
    // To avoid requesting more OS memory while there are unswept spans, when a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  9. src/runtime/mgcwork.go

    		return false
    	}
    	systemstack(func() {
    		gp := getg().m.curg
    		for i := 0; i < batchSize && !(preemptible && gp.preempt); i++ {
    			span := work.wbufSpans.free.first
    			if span == nil {
    				break
    			}
    			work.wbufSpans.free.remove(span)
    			mheap_.freeManual(span, spanAllocWorkBuf)
    		}
    	})
    	more := !work.wbufSpans.free.isEmpty()
    	unlock(&work.wbufSpans.lock)
    	return more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  10. samples/bookinfo/src/productpage/productpage.py

    # A note on distributed tracing:
    #
    # Although Istio proxies are able to automatically send spans, they need some
    # hints to tie together the entire trace. Applications need to propagate the
    # appropriate HTTP headers so that when the proxies send span information, the
    # spans can be correlated correctly into a single trace.
    #
    # To do this, an application needs to collect and propagate headers from the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top