Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 172 for counter2 (0.18 sec)

  1. src/cmd/vendor/modules.txt

    golang.org/x/sys/windows
    # golang.org/x/telemetry v0.0.0-20240603224550-f2b69109f79b
    ## explicit; go 1.20
    golang.org/x/telemetry
    golang.org/x/telemetry/counter
    golang.org/x/telemetry/counter/countertest
    golang.org/x/telemetry/internal/config
    golang.org/x/telemetry/internal/configstore
    golang.org/x/telemetry/internal/counter
    golang.org/x/telemetry/internal/crashmonitor
    golang.org/x/telemetry/internal/mmap
    golang.org/x/telemetry/internal/telemetry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/upload/findwork.go

    	countfiles []string // count files to process
    	readyfiles []string // old reports to upload
    	// relative names
    	uploaded map[string]bool // reports that have been uploaded
    }
    
    // find all the files that look like counter files or reports
    // that need to be uploaded. (There may be unexpected leftover files
    // and uploading is supposed to be idempotent.)
    func (u *uploader) findWork() work {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/telemetrystats/telemetrystats.go

    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/modload"
    	"cmd/internal/telemetry"
    )
    
    func Increment() {
    	incrementConfig()
    	incrementVersionCounters()
    }
    
    // incrementConfig increments counters for the configuration
    // the command is running in.
    func incrementConfig() {
    	if !modload.WillBeEnabled() {
    		telemetry.Inc("go/mode:gopath")
    	} else if workfile := modload.FindGoWork(base.Cwd()); workfile != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v2/tf_dialect_to_executor.cc

    #include "tsl/lib/monitoring/counter.h"
    #include "tsl/platform/error_logging.h"
    #include "tsl/platform/status.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace v2 {
    
    using mlir::LogicalResult;
    using mlir::ModuleOp;
    using mlir::OpPassManager;
    using mlir::PassManager;
    using mlir::func::FuncOp;
    
    auto *tf_dialect_to_executor_dialect_status = tsl::monitoring::Counter<1>::New(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 23:22:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. src/runtime/symtab.go

    	frames     []Frame
    	frameStore [2]Frame
    }
    
    // Frame is the information returned by [Frames] for each call frame.
    type Frame struct {
    	// PC is the program counter for the location in this frame.
    	// For a frame that calls another frame, this will be the
    	// program counter of a call instruction. Because of inlining,
    	// multiple frames may have the same PC value, but different
    	// symbolic information.
    	PC uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/telemetry.txt

    # Tests for the telemetry subcommand,
    
    # The script test framework sets TEST_TELEMETRY_DIR (overriding the
    # default telemetry dir location) and then checks that at least one
    # counter has been written per script tests.
    # Run go before unsetting TEST_TELEMETRY_DIR to make the tests happy.
    # We want to unset it so the environment we're testing is as close
    # to a user's environment.
    go help telemetry
    env TEST_TELEMETRY_DIR=
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_tf.cc

    #include "xla/mlir_hlo/mhlo/utils/type_conversion.h"
    #include "tensorflow/core/lib/monitoring/counter.h"
    
    namespace mlir {
    namespace mhlo {
    namespace {
    
    #define GEN_PASS_DEF_LEGALIZETF
    #include "tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_tf_passes.h.inc"
    
    auto *mlir_legalization_count = tensorflow::monitoring::Counter<1>::New(
        "/tensorflow/core/tf2xla/v1/mlir_failed_xla_legalize_tf_count",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/proginfo.go

    // toolchain program.
    func IsToolchainProgram(progPath string) bool {
    	return strings.HasPrefix(progPath, "cmd/")
    }
    
    // ProgramInfo extracts the go version, program package path, and program
    // version to use for counter files.
    //
    // For programs in the Go toolchain, the program version will be the same as
    // the Go version, and will typically be of the form "go1.2.3", not a semantic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:09:33 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildServiceIntegrationTest.groovy

            serviceName | finalize | finalizeOnRead
            null        | false    | false
            null        | true     | false
            null        | false    | true
            "counter"   | false    | false
            "counter"   | true     | false
            "counter"   | false    | true
            ""          | false    | false
            ""          | true     | false
            ""          | false    | true
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 11:47:23 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  10. cmd/http-stats.go

    	sync.RWMutex
    }
    
    // Inc increments the api stats counter.
    func (stats *HTTPAPIStats) Inc(api string) {
    	if stats == nil {
    		return
    	}
    	stats.Lock()
    	defer stats.Unlock()
    	if stats.apiStats == nil {
    		stats.apiStats = make(map[string]int)
    	}
    	stats.apiStats[api]++
    }
    
    // Dec increments the api stats counter.
    func (stats *HTTPAPIStats) Dec(api string) {
    	if stats == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 06:25:13 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top