Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 401 for keyValue (0.2 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/admissionregistration.k8s.io.v1beta1.MutatingWebhookConfiguration.json

              {
                "key": "keyValue",
                "operator": "operatorValue",
                "values": [
                  "valuesValue"
                ]
              }
            ]
          },
          "objectSelector": {
            "matchLabels": {
              "matchLabelsKey": "matchLabelsValue"
            },
            "matchExpressions": [
              {
                "key": "keyValue",
                "operator": "operatorValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/resource.k8s.io.v1alpha2.ResourceClaim.json

              {
                "matchExpressions": [
                  {
                    "key": "keyValue",
                    "operator": "operatorValue",
                    "values": [
                      "valuesValue"
                    ]
                  }
                ],
                "matchFields": [
                  {
                    "key": "keyValue",
                    "operator": "operatorValue",
                    "values": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:16 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/resource.k8s.io.v1alpha2.ResourceClaim.yaml

    status:
      allocation:
        availableOnNodes:
          nodeSelectorTerms:
          - matchExpressions:
            - key: keyValue
              operator: operatorValue
              values:
              - valuesValue
            matchFields:
            - key: keyValue
              operator: operatorValue
              values:
              - valuesValue
        resourceHandles:
        - data: dataValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/trace_util.go

    limitations under the License.
    */
    
    package handlers
    
    import (
    	"net/http"
    
    	"go.opentelemetry.io/otel/attribute"
    )
    
    func traceFields(req *http.Request) []attribute.KeyValue {
    	return []attribute.KeyValue{
    		attribute.Stringer("accept", &lazyAccept{req: req}),
    		attribute.Stringer("audit-id", &lazyAuditID{req: req}),
    		attribute.Stringer("client", &lazyClientIP{req: req}),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 03 15:25:35 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. test/typeparam/orderedmapsimp.dir/a.go

    		var zero V
    		return zero, false
    	}
    	return (*pn).val, true
    }
    
    // keyValue is a pair of key and value used while iterating.
    type keyValue[K, V any] struct {
    	key K
    	val V
    }
    
    // iterate returns an iterator that traverses the map.
    func (m *Map[K, V]) Iterate() *Iterator[K, V] {
    	sender, receiver := Ranger[keyValue[K, V]]()
    	var f func(*node[K, V]) bool
    	f = func(n *node[K, V]) bool {
    		if n == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:40:40 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  6. pkg/monitoring/derived_gauge.go

    	return nil
    }
    
    func (d *derivedGauge) ValueFrom(valueFn func() float64, labelValues ...LabelValue) DerivedMetric {
    	d.mu.Lock()
    	defer d.mu.Unlock()
    	lv := slices.Map(labelValues, func(e LabelValue) attribute.KeyValue {
    		return e.keyValue
    	})
    	as := attribute.NewSet(lv...)
    	d.attrs[as] = valueFn
    	return d
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. src/expvar/expvar.go

    // Map is a string-to-Var map variable that satisfies the [Var] interface.
    type Map struct {
    	m      sync.Map // map[string]Var
    	keysMu sync.RWMutex
    	keys   []string // sorted
    }
    
    // KeyValue represents a single entry in a [Map].
    type KeyValue struct {
    	Key   string
    	Value Var
    }
    
    func (v *Map) String() string {
    	return string(v.appendJSON(nil))
    }
    
    func (v *Map) appendJSON(b []byte) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 21:32:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. src/go/doc/testdata/examples/multiple.golden

    	if err != nil {
    		log.Fatal(err)
    	}
    	fmt.Printf("The date is %s\n", out)
    }
    -- KeyValue.Play --
    package main
    
    import (
    	"fmt"
    )
    
    func main() {
    	v := struct {
    		a string
    		b int
    	}{
    		a: "A",
    		b: 1,
    	}
    	fmt.Print(v)
    }
    -- KeyValue.Output --
    a: "A", b: 1
    -- KeyValueImport.Play --
    package main
    
    import (
    	"flag"
    	"fmt"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 16:17:51 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/etcd3/event.go

    	// struct field to eliminate contention
    	// between startWatching and processEvent
    	isInitialEventsEndBookmark bool
    }
    
    // parseKV converts a KeyValue retrieved from an initial sync() listing to a synthetic isCreated event.
    func parseKV(kv *mvccpb.KeyValue) *event {
    	return &event{
    		key:       string(kv.Key),
    		value:     kv.Value,
    		prevValue: nil,
    		rev:       kv.ModRevision,
    		isDeleted: false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/process/internal/JvmOptions.java

                } else if (argStr.startsWith("-D")) {
                    String keyValue = argStr.substring(2);
                    int equalsIndex = keyValue.indexOf("=");
                    if (equalsIndex == -1) {
                        systemProperty(keyValue, "");
                    } else {
                        systemProperty(keyValue.substring(0, equalsIndex), keyValue.substring(equalsIndex + 1));
                    }
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top