Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for nameVal (0.53 sec)

  1. pilot/pkg/model/gateway.go

    }
    
    var (
    	typeTag = monitoring.CreateLabel("type")
    	nameTag = monitoring.CreateLabel("name")
    
    	totalRejectedConfigs = monitoring.NewSum(
    		"pilot_total_rejected_configs",
    		"Total number of configs that Pilot had to reject or ignore.",
    	)
    )
    
    func RecordRejectedConfig(gatewayName string) {
    	totalRejectedConfigs.With(typeTag.Value("gateway"), nameTag.Value(gatewayName)).Increment()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

        }) {_xla_compile_device_type = "TPU", _replication_info = "replicate", device = "/device:TPU:0", name = "nameA"} : () -> tensor<i1>
      "tf.TPUReplicateMetadata"() {_xla_compile_device_type = "TPU", _replication_info = "replicate", device = "/device:TPU:0", num_replicas = 1, topology = "topology"} : () -> ()
      func.return
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  3. src/cmd/cgo/out.go

    		ctype := "struct {\n"
    		gotype := new(bytes.Buffer)
    		fmt.Fprintf(gotype, "struct {\n")
    		off := int64(0)
    		npad := 0
    		argField := func(typ ast.Expr, namePat string, args ...interface{}) {
    			name := fmt.Sprintf(namePat, args...)
    			t := p.cgoType(typ)
    			if off%t.Align != 0 {
    				pad := t.Align - off%t.Align
    				ctype += fmt.Sprintf("\t\tchar __pad%d[%d];\n", npad, pad)
    				off += pad
    				npad++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/flowcontrol/v1/types.go

    package v1
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    )
    
    // These are valid wildcards.
    const (
    	APIGroupAll    = "*"
    	ResourceAll    = "*"
    	VerbAll        = "*"
    	NonResourceAll = "*"
    	NameAll        = "*"
    
    	NamespaceEvery = "*" // matches every particular namespace
    )
    
    // System preset priority level names
    const (
    	PriorityLevelConfigurationNameExempt   = "exempt"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Statfs_t.Iosize", Field, 0},
    		{"Statfs_t.Mntfromname", Field, 0},
    		{"Statfs_t.Mntonname", Field, 0},
    		{"Statfs_t.Mount_info", Field, 2},
    		{"Statfs_t.Namelen", Field, 0},
    		{"Statfs_t.Namemax", Field, 0},
    		{"Statfs_t.Owner", Field, 0},
    		{"Statfs_t.Pad_cgo_0", Field, 0},
    		{"Statfs_t.Pad_cgo_1", Field, 2},
    		{"Statfs_t.Reserved", Field, 0},
    		{"Statfs_t.Spare", Field, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top