Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 172 for counter2 (0.2 sec)

  1. src/internal/coverage/cfile/emitdata_test.go

    		t.Skip("skipped due to lack of race detector support / CGO")
    	}
    
    	// This will run a program with -cover and -race where we have a
    	// goroutine still running (and updating counters) at the point where
    	// the test runtime is trying to write out counter data.
    	cmd := exec.Command(testenv.GoToolPath(t), "test", "-cover", "-race")
    	cmd.Dir = filepath.Join("testdata", "issue56006")
    	b, err := cmd.CombinedOutput()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/SettingsScriptExecutionIntegrationTest.groovy

            settingsFile.text = "println 'counter: __'"
            long before = settingsFile.length()
    
            expect:
            (10..40).each {
                settingsFile.text = "println 'counter: $it'"
                assert settingsFile.length() == before
    
                succeeds()
                result.assertOutputContains("counter: $it")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. cluster/addons/node-problem-detector/npd.yaml

            - "-c"
            - "exec /node-problem-detector --logtostderr --config.system-log-monitor=/config/kernel-monitor.json,/config/systemd-monitor.json --config.custom-plugin-monitor=/config/kernel-monitor-counter.json,/config/systemd-monitor-counter.json --config.system-stats-monitor=/config/system-stats-monitor.json >>/var/log/node-problem-detector.log 2>&1"
            securityContext:
              privileged: true
            resources:
              limits:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/test.go

    }
    
    func coverRegisterFile(fileName string, counter []uint32, pos []uint32, numStmts []uint16) {
    	if 3*len(counter) != len(pos) || len(counter) != len(numStmts) {
    		panic("coverage: mismatched sizes")
    	}
    	if coverCounters[fileName] != nil {
    		// Already registered.
    		return
    	}
    	coverCounters[fileName] = counter
    	block := make([]testing.CoverBlock, len(counter))
    	for i := range counter {
    		block[i] = testing.CoverBlock{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblems.kt

                val hasTooManyProblems = hasTooManyProblems(summary)
                val problemCountString = problemCount.counter("problem")
                val reusedProjectsString = reusedProjects.counter("project")
                val updatedProjectsString = updatedProjects.counter("project")
                when {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/internal/chacha8rand/chacha8.go

    package chacha8rand
    
    import "internal/byteorder"
    
    const (
    	ctrInc = 4  // increment counter by 4 between block calls
    	ctrMax = 16 // reseed when counter reaches 16
    	chunk  = 32 // each chunk produced by block is 32 uint64s
    	reseed = 4  // reseed with 4 words
    )
    
    // block is the chacha8rand block function.
    func block(seed *[4]uint64, blocks *[32]uint64, counter uint32)
    
    // A State holds the state for a single random generator.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:47:29 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/code/DefaultUserCodeApplicationContext.java

    import java.util.concurrent.atomic.AtomicLong;
    import java.util.function.Supplier;
    
    public class DefaultUserCodeApplicationContext implements UserCodeApplicationContext {
    
        private static final AtomicLong COUNTER = new AtomicLong();
    
        @SuppressWarnings("ThreadLocalUsage")
        private final ThreadLocal<CurrentApplication> currentApplication = new ThreadLocal<CurrentApplication>();
    
        @Override
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/InitScriptExecutionIntegrationTest.groovy

            initScript.text = "println 'counter: __'"
            long before = initScript.length()
    
            expect:
            (10..20).each {
                initScript.text = "println 'counter: $it'"
                assert initScript.length() == before
    
                executer.withArguments("--init-script", initScript.absolutePath)
                succeeds()
                result.assertOutputContains("counter: $it")
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. src/runtime/covercounter.go

    	u32sz := unsafe.Sizeof(uint32(0))
    	for datap := &firstmoduledata; datap != nil; datap = datap.next {
    		if datap.covctrs == datap.ecovctrs {
    			continue
    		}
    		res = append(res, rtcov.CovCounterBlob{
    			Counters: (*uint32)(unsafe.Pointer(datap.covctrs)),
    			Len:      uint64((datap.ecovctrs - datap.covctrs) / u32sz),
    		})
    	}
    	return res
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:41:02 UTC 2024
    - 740 bytes
    - Viewed (0)
  10. src/cmd/go/internal/telemetrycmd/telemetry.go

    	Long: `Telemetry is used to manage Go telemetry data and settings.
    
    Telemetry can be in one of three modes: off, local, or on.
    
    When telemetry is in local mode, counter data is written to the local file
    system, but will not be uploaded to remote servers.
    
    When telemetry is off, local counter data is neither collected nor uploaded.
    
    When telemetry is on, telemetry data is written to the local file system
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top