Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for OmitStages (0.23 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.pb.go

    	if m.OmitManagedFields {
    		dAtA[i] = 1
    	} else {
    		dAtA[i] = 0
    	}
    	i--
    	dAtA[i] = 0x20
    	if len(m.OmitStages) > 0 {
    		for iNdEx := len(m.OmitStages) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.OmitStages[iNdEx])
    			copy(dAtA[i:], m.OmitStages[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.OmitStages[iNdEx])))
    			i--
    			dAtA[i] = 0x1a
    		}
    	}
    	if len(m.Rules) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 81.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

      // PolicyRules are strictly ordered.
      // +listType=atomic
      repeated PolicyRule rules = 2;
    
      // OmitStages is a list of stages for which no events are created. Note that this can also
      // be specified per rule in which case the union of both are omitted.
      // +optional
      // +listType=atomic
      repeated string omitStages = 3;
    
      // OmitManagedFields indicates whether to omit the managed fields of the request
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/filters/request_deadline.go

    		ev.Stage = auditinternal.StageResponseStarted
    		if statusErr != nil {
    			ev.ResponseStatus.Message = statusErr.Error()
    		}
    
    		rw := decorateResponseWriter(req.Context(), w, ev, sink, ac.RequestAuditConfig.OmitStages)
    		failedHandler.ServeHTTP(rw, req)
    	})
    }
    
    // failedErrorHandler returns an http.Handler that uses the specified StatusError object
    // to render an error response to the request.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 21:12:12 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

            resources: ["tokenreviews"]
        omitStages:
          - "RequestReceived"
      # Get responses can be large; skip them.
      - level: Request
        verbs: ["get", "list", "watch"]
        resources: ${known_apis}
        omitStages:
          - "RequestReceived"
      # Default level for known APIs
      - level: RequestResponse
        resources: ${known_apis}
        omitStages:
          - "RequestReceived"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. pkg/generated/openapi/zz_generated.openapi.go

    									},
    								},
    							},
    						},
    					},
    					"omitStages": {
    						VendorExtensible: spec.VendorExtensible{
    							Extensions: spec.Extensions{
    								"x-kubernetes-list-type": "atomic",
    							},
    						},
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top