Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 395 for GetOptions (0.35 sec)

  1. staging/src/k8s.io/apiserver/pkg/storageversion/updater.go

    	UpdateStatus(context.Context, *v1alpha1.StorageVersion, metav1.UpdateOptions) (*v1alpha1.StorageVersion, error)
    	Get(context.Context, string, metav1.GetOptions) (*v1alpha1.StorageVersion, error)
    }
    
    // SetCommonEncodingVersion updates the CommonEncodingVersion and the AllEncodingVersionsEqual
    // condition based on the StorageVersions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 22:40:54 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. istioctl/pkg/kubeinject/kubeinject.go

    		Transport: &http.Transport{
    			TLSClientConfig: tlsClientConfig,
    		},
    	}
    	if cc.Service != nil {
    		svc, err := e.client.Kube().CoreV1().Services(cc.Service.Namespace).Get(context.Background(), cc.Service.Name, metav1.GetOptions{})
    		if err != nil {
    			return nil, err
    		}
    		namespace, selector, err := polymorphichelpers.SelectorsForObject(svc)
    		if err != nil {
    			if e.injectorAddress == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 29 02:29:02 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/zz_generated.deepcopy.go

    func (in *GetOptions) DeepCopyInto(out *GetOptions) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new GetOptions.
    func (in *GetOptions) DeepCopy() *GetOptions {
    	if in == nil {
    		return nil
    	}
    	out := new(GetOptions)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:25 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/main/java/org/gradle/language/scala/tasks/AbstractScalaCompile.java

            return scalaCompileOptions;
        }
    
        /**
         * Returns the Java compilation options.
         */
        @Nested
        @Override
        public CompileOptions getOptions() {
            return compileOptions;
        }
    
        abstract protected Compiler<ScalaJavaJointCompileSpec> getCompiler(ScalaJavaJointCompileSpec spec);
    
        @TaskAction
        public void compile() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. pkg/controlplane/reconcilers/endpointsadapter.go

    // Get takes the name and namespace of the Endpoints resource, and returns a
    // corresponding Endpoints object if it exists, and an error if there is any.
    func (adapter *EndpointsAdapter) Get(namespace, name string, getOpts metav1.GetOptions) (*corev1.Endpoints, error) {
    	return adapter.endpointClient.Endpoints(namespace).Get(context.TODO(), name, getOpts)
    }
    
    // Create accepts a namespace and Endpoints object and creates the Endpoints
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 27 12:46:23 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  6. pkg/test/framework/components/crd/gateway.go

    	return retry.UntilSuccess(func() error {
    		for _, c := range ctx.Clusters().Configs() {
    			_, err := c.GatewayAPI().GatewayV1beta1().GatewayClasses().Get(context.Background(), "istio", metav1.GetOptions{})
    			if err != nil {
    				return err
    			}
    			crdl, err := c.Ext().ApiextensionsV1().CustomResourceDefinitions().List(context.Background(), metav1.ListOptions{})
    			if err != nil {
    				return err
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 17:54:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/register.go

    // ParameterCodec knows about query parameters used with the meta v1 API spec.
    var ParameterCodec = runtime.NewParameterCodec(scheme)
    
    var optionsTypes = []runtime.Object{
    	&ListOptions{},
    	&GetOptions{},
    	&DeleteOptions{},
    	&CreateOptions{},
    	&UpdateOptions{},
    	&PatchOptions{},
    }
    
    // AddToGroupVersion registers common meta types into schemas.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 22 18:47:31 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*url.Values)(nil), (*GetOptions)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_url_Values_To_v1_GetOptions(a.(*url.Values), b.(*GetOptions), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:25 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  9. operator/pkg/verifier/verifier.go

    		switch kind {
    		case "Deployment":
    			deployment := &appsv1.Deployment{}
    			err = info.Client.
    				Get().
    				Resource(kinds).
    				Namespace(namespace).
    				Name(name).
    				VersionedParams(&metav1.GetOptions{}, scheme.ParameterCodec).
    				Do(context.TODO()).
    				Into(deployment)
    			if err != nil {
    				v.reportFailure(kind, name, namespace, err)
    				return err
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/SelectOptionPromptEvent.java

            this.question = question;
            this.options = options;
            this.defaultOption = defaultOption;
        }
    
        public String getQuestion() {
            return question;
        }
    
        public List<String> getOptions() {
            return options;
        }
    
        public int getDefaultOption() {
            return defaultOption;
        }
    
        @Override
        public String getPrompt() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top