Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for fieldValue (0.17 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/admission.k8s.io.v1.AdmissionReview.json

            "group": "groupValue",
            "kind": "kindValue",
            "uid": "uidValue",
            "causes": [
              {
                "reason": "reasonValue",
                "message": "messageValue",
                "field": "fieldValue"
              }
            ],
            "retryAfterSeconds": 5
          },
          "code": 6
        },
        "patch": "BA==",
        "patchType": "patchTypeValue",
        "auditAnnotations": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/admission.k8s.io.v1beta1.AdmissionReview.yaml

    response:
      allowed: true
      auditAnnotations:
        auditAnnotationsKey: auditAnnotationsValue
      patch: BA==
      patchType: patchTypeValue
      status:
        code: 6
        details:
          causes:
          - field: fieldValue
            message: messageValue
            reason: reasonValue
          group: groupValue
          kind: kindValue
          name: nameValue
          retryAfterSeconds: 5
          uid: uidValue
        message: messageValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. pkg/proxy/util/utils.go

    func LogAndEmitIncorrectIPVersionEvent(recorder events.EventRecorder, fieldName, fieldValue, svcNamespace, svcName string, svcUID types.UID) {
    	errMsg := fmt.Sprintf("%s in %s has incorrect IP version", fieldValue, fieldName)
    	klog.ErrorS(nil, "Incorrect IP version", "service", klog.KRef(svcNamespace, svcName), "field", fieldName, "value", fieldValue)
    	if recorder != nil {
    		recorder.Eventf(
    			&v1.ObjectReference{
    				Kind:      "Service",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 11:57:43 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/admission.k8s.io.v1beta1.AdmissionReview.json

            "group": "groupValue",
            "kind": "kindValue",
            "uid": "uidValue",
            "causes": [
              {
                "reason": "reasonValue",
                "message": "messageValue",
                "field": "fieldValue"
              }
            ],
            "retryAfterSeconds": 5
          },
          "code": 6
        },
        "patch": "BA==",
        "patchType": "patchTypeValue",
        "auditAnnotations": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/admission.k8s.io.v1.AdmissionReview.yaml

    response:
      allowed: true
      auditAnnotations:
        auditAnnotationsKey: auditAnnotationsValue
      patch: BA==
      patchType: patchTypeValue
      status:
        code: 6
        details:
          causes:
          - field: fieldValue
            message: messageValue
            reason: reasonValue
          group: groupValue
          kind: kindValue
          name: nameValue
          retryAfterSeconds: 5
          uid: uidValue
        message: messageValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. src/go/ast/print.go

    // to that file set. Otherwise positions are printed as integer
    // values (file set specific offsets).
    //
    // A non-nil [FieldFilter] f may be provided to control the output:
    // struct fields for which f(fieldname, fieldvalue) is true are
    // printed; all others are filtered from the output. Unexported
    // struct fields are never printed.
    func Fprint(w io.Writer, fset *token.FileSet, x any, f FieldFilter) error {
    	return fprint(w, fset, x, f)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top