Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for ApplyOptions (0.17 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/customresourcedefinition.go

    	Apply(ctx context.Context, customResourceDefinition *apiextensionsv1.CustomResourceDefinitionApplyConfiguration, opts metav1.ApplyOptions) (result *v1.CustomResourceDefinition, err error)
    	ApplyStatus(ctx context.Context, customResourceDefinition *apiextensionsv1.CustomResourceDefinitionApplyConfiguration, opts metav1.ApplyOptions) (result *v1.CustomResourceDefinition, err error)
    	CustomResourceDefinitionExpansion
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    	Apply(ctx context.Context, customResourceDefinition *apiextensionsv1beta1.CustomResourceDefinitionApplyConfiguration, opts v1.ApplyOptions) (result *v1beta1.CustomResourceDefinition, err error)
    	ApplyStatus(ctx context.Context, customResourceDefinition *apiextensionsv1beta1.CustomResourceDefinitionApplyConfiguration, opts v1.ApplyOptions) (result *v1beta1.CustomResourceDefinition, err error)
    	CustomResourceDefinitionExpansion
    }
    
    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. pkg/controller/replication/conversion.go

    func (c conversionClient) Apply(ctx context.Context, rs *appsv1apply.ReplicaSetApplyConfiguration, opts metav1.ApplyOptions) (*apps.ReplicaSet, error) {
    	return nil, errors.New("Apply() is not implemented for conversionClient")
    }
    
    func (c conversionClient) ApplyStatus(ctx context.Context, rs *appsv1apply.ReplicaSetApplyConfiguration, opts metav1.ApplyOptions) (*apps.ReplicaSet, error) {
    	return nil, errors.New("ApplyStatus() is not implemented for conversionClient")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 18:43:33 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/zz_generated.deepcopy.go

    func (in *ApplyOptions) DeepCopyInto(out *ApplyOptions) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	if in.DryRun != nil {
    		in, out := &in.DryRun, &out.DryRun
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ApplyOptions.
    func (in *ApplyOptions) DeepCopy() *ApplyOptions {
    	if in == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:25 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

         * @since 3.5
         */
        public void useJUnit(Action<? super JUnitOptions> testFrameworkConfigure) {
            useJUnit();
            applyOptions(JUnitOptions.class, testFrameworkConfigure);
        }
    
        /**
         * Specifies that JUnit Platform should be used to discover and execute the tests.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  6. pkg/controller/testutil/test_utils.go

    	}
    
    	return &updatedNode, nil
    }
    
    // Apply applies a NodeApplyConfiguration to a Node in the fake store.
    func (m *FakeNodeHandler) Apply(ctx context.Context, node *v1apply.NodeApplyConfiguration, opts metav1.ApplyOptions) (*v1.Node, error) {
    	patchOpts := opts.ToPatchOptions()
    	data, err := json.Marshal(node)
    	if err != nil {
    		return nil, err
    	}
    	name := node.Name
    	if name == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  7. pkg/controller/servicecidrs/servicecidrs_controller.go

    					WithLastTransitionTime(metav1.Now()))
    			svcApply := networkingapiv1alpha1apply.ServiceCIDR(cidr.Name).WithStatus(svcApplyStatus)
    			_, err = c.client.NetworkingV1alpha1().ServiceCIDRs().ApplyStatus(ctx, svcApply, metav1.ApplyOptions{FieldManager: controllerName, Force: true})
    			return err
    		}
    		// If there are no IPAddress depending on this ServiceCIDR is safe to remove it,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	applyOptions := metav1.ApplyOptions{FieldManager: asFieldManager, Force: true}
    
    	// the condition field in fsStatusUpdate holds the new condition we want to update.
    	// TODO: this will break when we have multiple conditions for a flowschema
    	_, err := client.ApplyStatus(context.TODO(), toFlowSchemaApplyConfiguration(fsu), applyOptions)
    	return err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/config.go

    	return c.lifecycleSignals.ShutdownInitiated.Signaled()
    }
    
    // Complete fills in any fields not set that are required to have valid data and can be derived
    // from other fields. If you're going to `ApplyOptions`, do that first. It's mutating the receiver.
    func (c *Config) Complete(informers informers.SharedInformerFactory) CompletedConfig {
    	if len(c.ExternalAddress) == 0 && c.PublicAddress != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  10. pkg/controller/resourceclaim/controller.go

    		}
    		podApply := corev1apply.Pod(name, namespace).WithStatus(corev1apply.PodStatus().WithResourceClaimStatuses(statuses...))
    		if _, err := ec.kubeClient.CoreV1().Pods(namespace).ApplyStatus(ctx, podApply, metav1.ApplyOptions{FieldManager: fieldManager, Force: true}); err != nil {
    			return fmt.Errorf("update pod %s/%s ResourceClaimStatuses: %v", namespace, name, err)
    		}
    	}
    
    	if pod.Spec.NodeName == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top