Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 105 for telemetry (0.21 sec)

  1. pkg/test/env/istio.go

    	LocalOut = verifyFile(LOCAL_OUT, LOCAL_OUT.ValueOrDefaultFunc(getDefaultIstioOut))
    
    	// OtelCollectorInstallFilePath is the OpenTelemetry installation file.
    	OtelCollectorInstallFilePath = path.Join(IstioSrc, getSampleFile("open-telemetry/otel.yaml"))
    
    	// GCEMetadataServerInstallFilePath is the GCE Metadata Server installation file.
    	GCEMetadataServerInstallFilePath = path.Join(IstioSrc, getInstallationFile("gcemetadata/gce_metadata_server.yaml"))
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 16:24:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/upload/findwork.go

    				// right thing...
    				//
    				// (see https://github.com/golang/go/issues/63142#issuecomment-1734025130)
    				if asof.Before(reportDate) {
    					// Note: since this report was created after telemetry was enabled,
    					// we can only assume that the process that created it checked that
    					// the counter data contained therein was all from after the asof
    					// date.
    					//
    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/vendor/golang.org/x/telemetry/internal/counter/counter.go

    			c.releaseLock(state)
    			return
    		}
    	}
    }
    
    // Read reads the given counter.
    // This is the implementation of x/telemetry/counter/countertest.ReadCounter.
    func Read(c *Counter) (uint64, error) {
    	if c.file.current.Load() == nil {
    		return c.state.load().extra(), nil
    	}
    	pf, err := readFile(c.file)
    	if err != nil {
    		return 0, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/envcmd/env.go

    		{Name: "GOVCS", Value: cfg.GOVCS},
    		{Name: "GOVERSION", Value: runtime.Version()},
    		{Name: "GODEBUG", Value: os.Getenv("GODEBUG")},
    		{Name: "GOTELEMETRY", Value: telemetry.Mode()},
    		{Name: "GOTELEMETRYDIR", Value: telemetry.Dir()},
    	}
    
    	for i := range env {
    		switch env[i].Name {
    		case "GO111MODULE":
    			if env[i].Value != "on" && env[i].Value != "" {
    				env[i].Changed = true
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    	}
    	return
    }
    
    // ValidateTelemetry validates a Telemetry.
    var ValidateTelemetry = RegisterValidateFunc("ValidateTelemetry",
    	func(cfg config.Config) (Warning, error) {
    		spec, ok := cfg.Spec.(*telemetry.Telemetry)
    		if !ok {
    			return nil, fmt.Errorf("cannot cast to telemetry")
    		}
    
    		errs := Validation{}
    
    		errs = AppendValidation(errs,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //
    // To view the current telemetry mode, run "go telemetry".
    // To disable telemetry uploading, but keep local data collection, run
    // "go telemetry local".
    // To enable both collection and uploading, run “go telemetry on”.
    // To disable both collection and uploading, run "go telemetry off".
    //
    // See https://go.dev/doc/telemetry for more information on telemetry.
    //
    // # Test packages
    //
    // Usage:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/buildid.go

    	if err != nil {
    		return ""
    	}
    	return buildid.HashToString(sum)
    }
    
    var (
    	counterCacheHit  = telemetry.NewCounter("go/buildcache/hit")
    	counterCacheMiss = telemetry.NewCounter("go/buildcache/miss")
    
    	onceIncStdlibRecompiled sync.Once
    	stdlibRecompiled        = telemetry.NewCounter("go/buildcache/stdlib-recompiled")
    )
    
    // useCache tries to satisfy the action a, which has action ID actionHash,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. pkg/config/analysis/msg/messages.gen.go

    	// InvalidTelemetryProvider defines a diag.MessageType for message "InvalidTelemetryProvider".
    	// Description: The Telemetry with empty providers will be ignored
    	InvalidTelemetryProvider = diag.NewMessageType(diag.Warning, "IST0157", "The Telemetry %v in namespace %q with empty providers will be ignored.")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  9. pilot/pkg/model/envoyfilter.go

    }
    
    // wellKnownVersions defines a mapping of well known regex matches to prefix matches
    // This is done only as an optimization; behavior should remain the same
    // All versions specified by the default installation (Telemetry V2) should be added here.
    var wellKnownVersions = map[string]string{
    	`^1\.16.*`: "1.16",
    	`^1\.17.*`: "1.17",
    	`^1\.18.*`: "1.18",
    	`^1\.19.*`: "1.19",
    	`^1\.20.*`: "1.20",
    	`^1\.21.*`: "1.21",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. src/cmd/cover/cover.go

    )
    
    const (
    	atomicPackagePath = "sync/atomic"
    	atomicPackageName = "_cover_atomic_"
    )
    
    func main() {
    	telemetry.Start()
    
    	objabi.AddVersionFlag()
    	flag.Usage = usage
    	objabi.Flagparse(usage)
    	telemetry.Inc("cover/invocations")
    	telemetry.CountFlags("cover/flag:", *flag.CommandLine)
    
    	// Usage information when no arguments.
    	if flag.NFlag() == 0 && flag.NArg() == 0 {
    		flag.Usage()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top