Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 53 of 53 for _encapsulate (0.14 sec)

  1. src/internal/coverage/pods/pods.go

    // license that can be found in the LICENSE file.
    
    package pods
    
    import (
    	"cmp"
    	"fmt"
    	"internal/coverage"
    	"os"
    	"path/filepath"
    	"regexp"
    	"slices"
    	"strconv"
    	"strings"
    )
    
    // Pod encapsulates a set of files emitted during the executions of a
    // coverage-instrumented binary. Each pod contains a single meta-data
    // file, and then 0 or more counter data files that refer to that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache-base/src/main/kotlin/org/gradle/internal/cc/base/services/ConfigurationCacheEnvironmentChangeTracker.kt

        fun systemPropertiesCleared() = mode.toTrackingMode().systemPropertiesCleared()
    
        private
        inner class ModeHolder {
            // ModeHolder encapsulates concurrent mode updates.
            private
            var mode: TrackerMode = Initial()
    
            private
            inline fun <T : TrackerMode> setMode(transition: (TrackerMode) -> T): T {
                synchronized(this) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. src/internal/coverage/cformat/format.go

    	// maps function to index in slice above (index acts as function ID)
    	funcTable map[fnfile]uint32
    
    	// A table storing coverage counts for each coverable unit.
    	unitTable map[extcu]uint32
    }
    
    // extcu encapsulates a coverable unit within some function.
    type extcu struct {
    	fnfid uint32 // index into p.funcs slice
    	coverage.CoverableUnit
    }
    
    // fnfile is a function-name/file-name tuple.
    type fnfile struct {
    	file  string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top