Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for PatchOptions (0.14 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    	Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
    	Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts metav1.PatchOptions, subresources ...string) (result *v1.Example, err error)
    	Apply(ctx context.Context, example *crv1.ExampleApplyConfiguration, opts metav1.ApplyOptions) (result *v1.Example, err error)
    	ExampleExpansion
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    	Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, error)
    	Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts v1.PatchOptions, subresources ...string) (result *v1beta1.CustomResourceDefinition, err error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/customresourcedefinition.go

    	Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error)
    	Patch(ctx context.Context, name string, pt types.PatchType, data []byte, opts metav1.PatchOptions, subresources ...string) (result *v1.CustomResourceDefinition, err error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. pkg/controller/job/job_controller.go

    }
    
    func (jm *Controller) patchJob(ctx context.Context, job *batch.Job, data []byte) error {
    	_, err := jm.kubeClient.BatchV1().Jobs(job.Namespace).Patch(
    		ctx, job.Name, types.StrategicMergePatchType, data, metav1.PatchOptions{})
    	return err
    }
    
    // getValidPodsWithFilter returns the valid pods that pass the filter.
    // Pods are valid if they have a finalizer or in uncounted set
    // and, for Indexed Jobs, a valid completion index.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  5. pkg/controlplane/apiserver/options/options_test.go

    		Audit: &apiserveroptions.AuditOptions{
    			LogOptions: apiserveroptions.AuditLogOptions{
    				Path:       "/var/log",
    				MaxAge:     11,
    				MaxBackups: 12,
    				MaxSize:    13,
    				Format:     "json",
    				BatchOptions: apiserveroptions.AuditBatchOptions{
    					Mode: "blocking",
    					BatchConfig: auditbuffered.BatchConfig{
    						BufferSize:     46,
    						MaxBatchSize:   47,
    						MaxBatchWait:   48 * time.Second,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. cmd/kube-apiserver/app/options/options_test.go

    				LogOptions: apiserveroptions.AuditLogOptions{
    					Path:       "/var/log",
    					MaxAge:     11,
    					MaxBackups: 12,
    					MaxSize:    13,
    					Format:     "json",
    					BatchOptions: apiserveroptions.AuditBatchOptions{
    						Mode: "blocking",
    						BatchConfig: auditbuffered.BatchConfig{
    							BufferSize:     46,
    							MaxBatchSize:   47,
    							MaxBatchWait:   48 * time.Second,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top