Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 225 for svcs (0.2 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/report/stacks.go

    func (s *StackSet) makeInitialStacks(rpt *Report) {
    	type key struct {
    		line    profile.Line
    		inlined bool
    	}
    	srcs := map[key]int{} // Sources identified so far.
    	seenFunctions := map[string]bool{}
    	unknownIndex := 1
    	getSrc := func(line profile.Line, inlined bool) int {
    		k := key{line, inlined}
    		if i, ok := srcs[k]; ok {
    			return i
    		}
    		x := StackSource{Places: []StackSlot{}} // Ensure Places is non-nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/ir/BUILD

            "@llvm-project//llvm:FileCheck",
            "@llvm-project//llvm:not",
            "@llvm-project//mlir:run_lit.sh",
        ],
    )
    
    tf_cc_test(
        name = "tfrt_fallback_util_test",
        srcs = ["tfrt_fallback_util_test.cc"],
        data = [
            "testdata/test.mlir",
        ],
        deps = [
            "//tensorflow/compiler/mlir/tfrt/ir:tfrt_fallback_async_opdefs",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/tests/BUILD

            "@llvm-project//llvm:FileCheck",
            "@llvm-project//llvm:not",
            "@llvm-project//mlir:run_lit.sh",
        ],
    )
    
    tf_cc_test(
        name = "fill_quantization_options_test",
        srcs = ["fill_quantization_options_test.cc"],
        deps = [
            "//tensorflow/compiler/mlir/quantization/stablehlo:fill_quantization_options",
            "//tensorflow/compiler/mlir/quantization/stablehlo:quantization_options_proto_cc",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/tests/analysis/BUILD

            "@llvm-project//llvm:FileCheck",
            "@llvm-project//llvm:not",
            "@llvm-project//mlir:run_lit.sh",
        ],
    )
    
    tf_cc_test(
        name = "update_op_cost_in_tfrt_mlir_test",
        srcs = ["update_op_cost_in_tfrt_mlir_test.cc"],
        data = [
            "testdata/test.mlir",
        ],
        deps = [
            "//tensorflow/compiler/mlir/tfrt:transforms/update_op_cost_in_tfrt_mlir",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. pkg/controller/volume/pvcprotection/pvc_protection_controller.go

    	if !deleted && !volumeutil.IsPodTerminated(pod, pod.Status) && pod.Spec.NodeName != "" {
    		return
    	}
    
    	logger.V(4).Info("Enqueuing PVCs for Pod", "pod", klog.KObj(pod), "podUID", pod.UID)
    
    	// Enqueue all PVCs that the pod uses
    	for _, volume := range pod.Spec.Volumes {
    		switch {
    		case volume.PersistentVolumeClaim != nil:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/driver/driver.go

    // interface to the internal interface.
    type internalSymbolizer struct {
    	Symbolizer
    }
    
    func (s *internalSymbolizer) Symbolize(mode string, srcs plugin.MappingSources, prof *profile.Profile) error {
    	isrcs := MappingSources{}
    	for m, s := range srcs {
    		isrcs[m] = s
    	}
    	return s.Symbolizer.Symbolize(mode, isrcs, prof)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/apps/v1beta1/generated.proto

    // StatefulSetPersistentVolumeClaimRetentionPolicy describes the policy used for PVCs
    // created from the StatefulSet VolumeClaimTemplates.
    message StatefulSetPersistentVolumeClaimRetentionPolicy {
      // whenDeleted specifies what happens to PVCs created from StatefulSet
      // VolumeClaimTemplates when the StatefulSet is deleted. The default policy
      // of `Retain` causes PVCs to not be affected by StatefulSet deletion. The
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. pilot/pkg/model/service_test.go

    }
    
    func BenchmarkServiceDeepCopy(b *testing.B) {
    	svc1 := buildHTTPService("test.com", visibility.Public, "10.10.0.1", "default", 80, 8080, 9090, 9999)
    	svc1.ServiceAccounts = []string{"sa1"}
    	svc1.ClusterVIPs = AddressMap{
    		Addresses: map[cluster.ID][]string{
    			"cluster1": {"10.10.0.1"},
    			"cluster2": {"10.10.0.2"},
    		},
    	}
    	for n := 0; n < b.N; n++ {
    		_ = svc1.DeepCopy()
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. src/net/http/cookie.go

    		case "httponly":
    			c.HttpOnly = true
    			continue
    		case "domain":
    			c.Domain = val
    			continue
    		case "max-age":
    			secs, err := strconv.Atoi(val)
    			if err != nil || secs != 0 && val[0] == '0' {
    				break
    			}
    			if secs <= 0 {
    				secs = -1
    			}
    			c.MaxAge = secs
    			continue
    		case "expires":
    			c.RawExpires = val
    			exptime, err := time.Parse(time.RFC1123, val)
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/kernels/BUILD

        "@com_google_absl//absl/types:optional",
    ]
    
    # Linked by tensorflow core, without registration of jit compilation passes.
    cc_library(
        name = "xla_ops_no_jit_rewrite_registration",
        srcs = ["xla_ops.cc"],
        hdrs = ["xla_ops.h"],
        deps = XLA_OPS_DEPS + [
            "//tensorflow/compiler/jit:device_compilation_cache",
            "//tensorflow/compiler/jit:device_compilation_profiler",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top