Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 3,161 for INC (0.03 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/metrics/metrics.go

    	apiServerIDHash := getHash(apiServerID)
    	encryptionConfigAutomaticReloadsTotal.WithLabelValues("failure", apiServerIDHash).Inc()
    	deprecatedEncryptionConfigAutomaticReloadFailureTotal.WithLabelValues(apiServerIDHash).Inc()
    	recordEncryptionConfigAutomaticReloadTimestamp("failure", apiServerIDHash)
    }
    
    func RecordEncryptionConfigAutomaticReloadSuccess(apiServerID string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 05:47:46 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/instrumented_plugins.go

    }
    
    var _ framework.FilterPlugin = &instrumentedFilterPlugin{}
    
    func (p *instrumentedFilterPlugin) Filter(ctx context.Context, state *framework.CycleState, pod *v1.Pod, nodeInfo *framework.NodeInfo) *framework.Status {
    	p.metric.Inc()
    	return p.FilterPlugin.Filter(ctx, state, pod, nodeInfo)
    }
    
    type instrumentedPreFilterPlugin struct {
    	framework.PreFilterPlugin
    
    	metric compbasemetrics.CounterMetric
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/telemetrystats/version_windows.go

    	"golang.org/x/sys/windows"
    )
    
    func incrementVersionCounters() {
    	v := windows.RtlGetVersion()
    	telemetry.Inc(fmt.Sprintf("go/platform/host/windows/major-version:%d", v.MajorVersion))
    	telemetry.Inc(fmt.Sprintf("go/platform/host/windows/version:%d-%d", v.MajorVersion, v.MinorVersion))
    	telemetry.Inc(fmt.Sprintf("go/platform/host/windows/build:%d", v.BuildNumber))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 637 bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/quantization_lib/BUILD

    )
    
    cc_library(
        name = "quantization_lib",
        srcs = [
            "quantization_driver.cc",
            "quantization_interface.cc.inc",
            "quantization_utils.cc",
        ],
        hdrs = [
            "quantization_driver.h",
            "quantization_interface.h.inc",
            "quantization_traits.h",
            "quantization_utils.h",
        ],
        deps = [
            ":quantization_config",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:52:27 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. cmd/http-stats.go

    	case code == 0:
    	case code == 499:
    		// 499 is a good error, shall be counted as canceled.
    		st.totalS3Canceled.Inc(api)
    	case code >= http.StatusBadRequest:
    		st.totalS3Errors.Inc(api)
    		if code >= http.StatusInternalServerError {
    			st.totalS35xxErrors.Inc(api)
    		} else {
    			st.totalS34xxErrors.Inc(api)
    		}
    	}
    }
    
    // Prepare new HTTPStats structure
    func newHTTPStats() *HTTPStats {
    	return &HTTPStats{}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 06:25:13 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/stats.go

    		}
    
    		latency := time.Since(start)
    
    		requestCount.WithContext(ctx).WithLabelValues(tag).Inc()
    		requestLatency.WithContext(ctx).WithLabelValues(tag).Observe(float64(latency.Milliseconds()) / 1000)
    	}
    }
    
    func (statsCollector) blocking(ctx context.Context) func() {
    	activeFetchCount.WithContext(ctx).WithLabelValues(fetchBlockedTag).Inc()
    	return activeFetchCount.WithContext(ctx).WithLabelValues(fetchBlockedTag).Dec
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 01 18:49:09 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/BUILD

               ["ir/tf_" + target["name"] + ".cc.inc" for target in tf_ops_category_list] +
               ["ir/tf_" + target["name"] + ".h" for target in tf_ops_category_list],
        hdrs = [
        ],
        textual_hdrs = [
            "ir/tf_types.def",
            "ir/tf_all_ops.h.inc",
            "ir/tf_remaining_ops.h.inc",
        ] + ["ir/tf_" + target["name"] + ".h.inc" for target in tf_ops_category_list],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  8. cni/pkg/nodeagent/pod_cache_test.go

    )
    
    func openNsTestOverride(s string) (NetnsCloser, error) {
    	return newFakeNs(inc()), nil
    }
    
    func openNsTestOverrideWithInodes(inodes ...uint64) func(s string) (NetnsCloser, error) {
    	i := 0
    	return func(s string) (NetnsCloser, error) {
    		inode := inodes[i]
    		i++
    		return newFakeNsInode(inc(), inode), nil
    	}
    }
    
    func TestUpsertPodCache(t *testing.T) {
    	counter.Store(0)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. src/cmd/go/main.go

    		telemetry.Inc("go/goroot:usr-local-go")
    	case "/usr/lib/go": // A typical location used by Linux package managers.
    		telemetry.Inc("go/goroot:usr-lib-go")
    	case "/usr/lib/golang": // Another typical location used by Linux package managers.
    		telemetry.Inc("go/goroot:usr-lib-golang")
    	case `c:\program files\go`: // Location used by Windows installer.
    		telemetry.Inc("go/goroot:program-files-go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. src/runtime/runtime.go

    type godebugInc struct {
    	name string
    	inc  atomic.Pointer[func()]
    }
    
    func (g *godebugInc) IncNonDefault() {
    	inc := g.inc.Load()
    	if inc == nil {
    		newInc := godebugNewIncNonDefault.Load()
    		if newInc == nil {
    			return
    		}
    		inc = new(func())
    		*inc = (*newInc)(g.name)
    		if raceenabled {
    			racereleasemerge(unsafe.Pointer(&g.inc))
    		}
    		if !g.inc.CompareAndSwap(nil, inc) {
    			inc = g.inc.Load()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top