Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 699 for scav (0.05 sec)

  1. src/runtime/extern.go

    		# MB goal    goal heap size, or /gc/heap/goal:bytes
    		# MB stacks  estimated scannable stack size, or /gc/scan/stack:bytes
    		# MB globals scannable global size, or /gc/scan/globals:bytes
    		# P          number of processors used, or /sched/gomaxprocs:threads
    	The phases are stop-the-world (STW) sweep termination, concurrent
    	mark and scan, and STW mark termination. The CPU times
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    // improve parallelism, the garbage collector breaks up scan jobs for
    // objects larger than maxObletBytes into "oblets" of at most
    // maxObletBytes. When scanning encounters the beginning of a large
    // object, it scans only the first oblet and enqueues the remaining
    // oblets as new scan jobs.
    
    package runtime
    
    import (
    	"internal/cpu"
    	"internal/runtime/atomic"
    	"unsafe"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. src/image/jpeg/scan.go

    		// into d.comp are unique.
    		for j := 0; j < i; j++ {
    			if scan[i].compIndex == scan[j].compIndex {
    				return FormatError("repeated component selector")
    			}
    		}
    		totalHV += d.comp[compIndex].h * d.comp[compIndex].v
    
    		// The baseline t <= 1 restriction is specified in table B.3.
    		scan[i].td = d.tmp[2+2*i] >> 4
    		if t := scan[i].td; t > maxTh || (d.baseline && t > 1) {
    			return FormatError("bad Td value")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. scan.go

    		field.NewValuePool.Put(values[idx])
    	}
    }
    
    // ScanMode scan data mode
    type ScanMode uint8
    
    // scan modes
    const (
    	ScanInitialized         ScanMode = 1 << 0 // 1
    	ScanUpdate              ScanMode = 1 << 1 // 2
    	ScanOnConflictDoNothing ScanMode = 1 << 2 // 4
    )
    
    // Scan scan rows into db statement
    func Scan(rows Rows, db *DB, mode ScanMode) {
    	var (
    		columns, _          = rows.Columns()
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. src/fmt/scan.go

    }
    
    // Scanner is implemented by any value that has a Scan method, which scans
    // the input for the representation of a value and stores the result in the
    // receiver, which must be a pointer to be useful. The Scan method is called
    // for any argument to [Scan], [Scanf], or [Scanln] that implements it.
    type Scanner interface {
    	Scan(state ScanState, verb rune) error
    }
    
    // Scan scans text read from standard input, storing successive
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/ci-systems/teamcity-scan.png

    teamcity-scan.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 51.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/img/tutorial/build-scan-dependencies.png

    build-scan-dependencies.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 406.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/img/ci-systems/jenkins-build-scan.png

    jenkins-build-scan.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 25.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/img/build-scan-2.png

    build-scan-2.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 23:03:53 UTC 2024
    - 257.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/tutorial/build-scan-prompt.png

    build-scan-prompt.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 305.2K bytes
    - Viewed (0)
Back to top