Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 185 for _ecounters (0.25 sec)

  1. pkg/kubelet/winstats/perfcounters_test.go

    					t.Fatalf("expected error message `%s` but got `%v`", tc.expectedErrMsg, err)
    				}
    				return
    			}
    
    			// There are some counters that we can't expect to see any non-zero values, like the
    			// networking-related counters.
    			if tc.skipCheck {
    				return
    			}
    
    			// Wait until we get a non-zero perf counter data.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. src/cmd/go/script_test.go

    			// not a counter file
    			continue
    		}
    		counters, _, err := countertest.ReadFile(filepath.Join(localDir, dirent.Name()))
    		if err != nil {
    			t.Fatalf("reading counter file: %v", err)
    		}
    		for k, v := range counters {
    			totals[k] += v
    		}
    	}
    
    	return totals
    }
    
    func checkCounters(t *testing.T, telemetryDir string) {
    	counters := readCounters(t, telemetryDir)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. pkg/proxy/util/nfacct/nfacct_linux_test.go

    	// validate response
    	assert.NoError(t, err)
    	assert.NotNil(t, counters)
    	assert.Equal(t, len(expected), len(counters))
    	for i := 0; i < len(expected); i++ {
    		assert.Equal(t, expected[i].Name, counters[i].Name)
    		assert.Equal(t, expected[i].Packets, counters[i].Packets)
    		assert.Equal(t, expected[i].Bytes, counters[i].Bytes)
    	}
    }
    
    func TestDecode(t *testing.T) {
    	testCases := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  4. src/runtime/extern.go

    //
    // To translate these PCs into symbolic information such as function
    // names and line numbers, use [CallersFrames]. CallersFrames accounts
    // for inlined functions and adjusts the return program counters into
    // call program counters. Iterating over the returned slice of PCs
    // directly is discouraged, as is using [FuncForPC] on any of the
    // returned PCs, since these cannot account for inlining or return
    // program counter adjustment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. .github/ISSUE_TEMPLATE/12-telemetry.yml

    projects: ["golang/29"]
    body:
    - type: textarea
      attributes:
        label: Summary
        description: >
          What change are you proposing to the upload configuration, and why?
          For new upload configuration, which new counters will be collected, what
          do they measure, and why is it important to collect them?
          Note that uploaded data must not carry sensitive user information.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 19:58:26 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. pkg/proxy/util/nfacct/nfacct.go

    	Add(name string) error
    	// Get retrieves the nfacct counter with the specified name, returning an error if it doesn't exist.
    	Get(name string) (*Counter, error)
    	// List retrieves all nfacct counters.
    	List() ([]*Counter, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/start.go

    	// ReportCrashes is a non-functional unless the program is built with go1.23+.
    	ReportCrashes bool
    
    	// Upload causes this program to periodically upload approved counters
    	// from the local telemetry database to telemetry.go.dev.
    	//
    	// This option has no effect unless the user has given consent
    	// to enable data collection, for example by running
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. 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)
  9. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/PropertyResourceBundleFallbackCharset.java

    import java.nio.charset.StandardCharsets;
    
    /**
     * A Java 8 compliant Charset implementation for reading properties files.  It first tries
     * to load the properties file using UTF-8 encoding and if it encounters an error, tries to
     * load the file using ISO-8859-1 encoding.
     *
     * This class is only necessary because {@code sun.util.PropertyResourceBundleCharset} is not
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/authorization/cel/metrics_test.go

    			},
    			name:      "wh1.example.com",
    			authztype: "Webhook",
    			want: `
    			# HELP apiserver_authorization_match_condition_evaluation_errors_total [ALPHA] Total number of errors when an authorization webhook encounters a match condition error split by authorizer type and name.
    			# TYPE apiserver_authorization_match_condition_evaluation_errors_total counter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top