Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 173 for telemetry (0.19 sec)

  1. src/cmd/distpack/pack.go

    	gohostos   string
    	gohostarch string
    	goos       string
    	goarch     string
    )
    
    func main() {
    	log.SetPrefix("distpack: ")
    	log.SetFlags(0)
    	telemetry.Start()
    	flag.Usage = usage
    	flag.Parse()
    	telemetry.Inc("distpack/invocations")
    	telemetry.CountFlags("distpack/flag:", *flag.CommandLine)
    	if flag.NArg() != 0 {
    		usage()
    	}
    
    	// Load context.
    	goroot = runtime.GOROOT()
    	if goroot == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/internal/counter/parse.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package counter
    
    import (
    	"bytes"
    	"fmt"
    	"strings"
    	"unsafe"
    
    	"golang.org/x/telemetry/internal/mmap"
    )
    
    type File struct {
    	Meta  map[string]string
    	Count map[string]uint64
    }
    
    func Parse(filename string, data []byte) (*File, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 14:38:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. pkg/workloadapi/workload.proto

      // CanonicalName for the workload. Used for telemetry.
      string canonical_name = 10;
      // CanonicalRevision for the workload. Used for telemetry.
      string canonical_revision = 11;
      // WorkloadType represents the type of the workload. Used for telemetry.
      WorkloadType workload_type = 12;
      // WorkloadName represents the name for the workload (of type WorkloadType). Used for telemetry.
      string workload_name = 13;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/templates/validatingwebhookconfiguration.yaml

          {{- end }}
        rules:
          - operations:
              - CREATE
              - UPDATE
            apiGroups:
              - security.istio.io
              - networking.istio.io
              - telemetry.istio.io
              - extensions.istio.io
            apiVersions:
              - "*"
            resources:
              - "*"
        {{- if .Values.base.validationCABundle }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/configstore/download_windows.go

    )
    
    func init() {
    	needNoConsole = needNoConsoleWindows
    }
    
    func needNoConsoleWindows(cmd *exec.Cmd) {
    	// The uploader main process is likely a daemonized process with no console.
    	// (see x/telemetry/start_windows.go) The console creation behavior when
    	// a parent is a console process without console is not clearly documented
    	// but empirically we observed the new console is created and attached to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. manifests/charts/istiod-remote/templates/clusterrole.yaml

        verbs: ["get", "watch", "list"]
        resources: ["*"]
    {{- if .Values.global.istiod.enableAnalysis }}
      - apiGroups: ["config.istio.io", "security.istio.io", "networking.istio.io", "authentication.istio.io", "rbac.istio.io", "telemetry.istio.io", "extensions.istio.io"]
        verbs: ["update"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/telemetry/proginfo.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package telemetry
    
    import (
    	"os"
    	"path/filepath"
    	"runtime/debug"
    	"strings"
    
    	"golang.org/x/mod/module"
    )
    
    // IsToolchainProgram reports whether a program with the given path is a Go
    // toolchain program.
    func IsToolchainProgram(progPath string) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:09:33 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/networkfilter.go

    	istioroute "istio.io/istio/pilot/pkg/networking/core/route"
    	"istio.io/istio/pilot/pkg/networking/core/tunnelingconfig"
    	"istio.io/istio/pilot/pkg/networking/plugin/authz"
    	"istio.io/istio/pilot/pkg/networking/telemetry"
    	"istio.io/istio/pilot/pkg/util/protoconv"
    	xdsfilters "istio.io/istio/pilot/pkg/xds/filters"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/host"
    	"istio.io/istio/pkg/config/protocol"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. src/cmd/doc/main.go

    	flagSet.BoolVar(&showSrc, "src", false, "show source code for symbol")
    	flagSet.BoolVar(&short, "short", false, "one-line representation for each symbol")
    	flagSet.Parse(args)
    	telemetry.Inc("doc/invocations")
    	telemetry.CountFlags("doc/flag:", *flag.CommandLine)
    	if chdir != "" {
    		if err := os.Chdir(chdir); err != nil {
    			return err
    		}
    	}
    	var paths []string
    	var symbol, method string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. manifests/charts/istiod-remote/templates/validatingwebhookconfiguration.yaml

          {{- end }}
        rules:
          - operations:
              - CREATE
              - UPDATE
            apiGroups:
              - security.istio.io
              - networking.istio.io
              - telemetry.istio.io
              - extensions.istio.io
            apiVersions:
              - "*"
            resources:
              - "*"
        {{- if .Values.base.validationCABundle }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top