Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for scanOne (0.23 sec)

  1. src/runtime/mgcmark.go

    // gcMarkRootCheck checks that all roots have been scanned. It is
    // purely for debugging.
    func gcMarkRootCheck() {
    	if work.markrootNext < work.markrootJobs {
    		print(work.markrootNext, " of ", work.markrootJobs, " markroot jobs done\n")
    		throw("left over markroot jobs")
    	}
    
    	// Check that stacks have been scanned.
    	//
    	// We only check the first nStackRoots Gs that we should have scanned.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/go/printer/testdata/parser.go

    	DeclarationErrors                  // report declaration errors
    )
    
    // The parser structure holds the parser's internal state.
    type parser struct {
    	file *token.File
    	scanner.ErrorVector
    	scanner scanner.Scanner
    
    	// Tracing/debugging
    	mode   uint // parsing mode
    	trace  bool // == (mode & Trace != 0)
    	indent uint // indentation used for tracing output
    
    	// Comments
    	comments    []*ast.CommentGroup
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    	heapScan atomic.Uint64
    
    	// lastHeapScan is the number of bytes of heap that were scanned
    	// last GC cycle. It is the same as heapMarked, but only
    	// includes the "scannable" parts of objects.
    	//
    	// Updated when the world is stopped.
    	lastHeapScan uint64
    
    	// lastStackScan is the number of bytes of stack that were scanned
    	// last GC cycle.
    	lastStackScan atomic.Uint64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/go/parser/parser.go

    package parser
    
    import (
    	"fmt"
    	"go/ast"
    	"go/build/constraint"
    	"go/internal/typeparams"
    	"go/scanner"
    	"go/token"
    	"strings"
    )
    
    // The parser structure holds the parser's internal state.
    type parser struct {
    	file    *token.File
    	errors  scanner.ErrorList
    	scanner scanner.Scanner
    
    	// Tracing/debugging
    	mode   Mode // parsing mode
    	trace  bool // == (mode&Trace != 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  5. src/runtime/mgc.go

    	}
    
    	// Restore 64-bit alignment on 32-bit.
    	_ uint32
    
    	// bytesMarked is the number of bytes marked this cycle. This
    	// includes bytes blackened in scanned objects, noscan objects
    	// that go straight to black, and permagrey objects scanned by
    	// markroot during the concurrent scan phase. This is updated
    	// atomically during the cycle. Updates may be batched
    	// arbitrarily, since the value is only read at the end of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/grafana/minio-dashboard.json

              "interval": "1m",
              "legendFormat": "[{{server}}]",
              "refId": "A"
            }
          ],
          "title": "Scanned Objects",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
          },
          "fieldConfig": {
            "defaults": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 15 10:03:01 UTC 2024
    - 93K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    func (p *parser) init(file *PosBase, r io.Reader, errh ErrorHandler, pragh PragmaHandler, mode Mode) {
    	p.top = true
    	p.file = file
    	p.errh = errh
    	p.mode = mode
    	p.pragh = pragh
    	p.scanner.init(
    		r,
    		// Error and directive handler for scanner.
    		// Because the (line, col) positions passed to the
    		// handler is always at or after the current reading
    		// position, it is safe to use the most recent position
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. src/runtime/mheap.go

    	// helps performance.
    	nelems uint16 // number of object in the span.
    	// freeIndexForScan is like freeindex, except that freeindex is
    	// used by the allocator whereas freeIndexForScan is used by the
    	// GC scanner. They are two fields so that the GC sees the object
    	// is allocated only when the object and the heap bits are
    	// initialized (see also the assignment of freeIndexForScan in
    	// mallocgc, and issue 54596).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

    // CHECK-DAG: "tfl.minimum"(%{{.*}}, %[[cst4]]) : (tensor<32xf32>, tensor<32xf32>) -> tensor<32xf32>
    }
    
    // Make sure quantization parameters are scanned from weight, but not from bias.
    // CHECK-LABEL: QuantizeWeight
    func.func @QuantizeWeight(%arg0: tensor<1x224x224x3xf32>) -> tensor<1x112x112x32xf32> {
      %w = arith.constant dense<1.0> : tensor<32x3x3x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  10. cmd/xl-storage-format-v2.go

    // using a delete-marker and MetaSys entries. It's used to track tiered content of a
    // deleted/overwritten version. This version is visible _only_to the scanner routine, for subsequent deletion.
    // This kind of tracking is necessary since a version's tiered content is deleted asynchronously.
    
    // Backend directory tree structure:
    // disk1/
    // └── bucket
    //     └── object
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top