Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 261 for GetOptions (0.26 sec)

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

    	Delete(ctx context.Context, name string, opts v1.DeleteOptions) error
    	DeleteCollection(ctx context.Context, opts v1.DeleteOptions, listOpts v1.ListOptions) error
    	Get(ctx context.Context, name string, opts v1.GetOptions) (*v1beta1.CustomResourceDefinition, error)
    	List(ctx context.Context, opts v1.ListOptions) (*v1beta1.CustomResourceDefinitionList, error)
    	Watch(ctx context.Context, opts v1.ListOptions) (watch.Interface, 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)
  2. operator/pkg/util/k8s.go

    		namespace = constants.IstioSystemNamespace
    	}
    	// check if the namespace already exists. If yes, do nothing. If no, create a new one.
    	if _, err := cs.CoreV1().Namespaces().Get(context.TODO(), namespace, metav1.GetOptions{}); err != nil {
    		if errors.IsNotFound(err) {
    			ns := &v1.Namespace{ObjectMeta: metav1.ObjectMeta{
    				Name:   namespace,
    				Labels: map[string]string{},
    			}}
    			if network != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. tests/integration/ambient/waypoint_test.go

    			client := t.Clusters().Default().GatewayAPI().GatewayV1beta1().GatewayClasses()
    
    			check := func() error {
    				gwc, _ := client.Get(context.Background(), constants.WaypointGatewayClassName, metav1.GetOptions{})
    				if gwc == nil {
    					return fmt.Errorf("failed to find GatewayClass %v", constants.WaypointGatewayClassName)
    				}
    				cond := kstatus.GetCondition(gwc.Status.Conditions, string(k8s.GatewayClassConditionStatusAccepted))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftDepsHandler.java

                return version;
            }
    
            public void setVersion(String version) {
                this.version = version;
            }
    
            public String getOptions() {
                return options;
            }
    
            public void setOptions(String options) {
                this.options = options;
            }
    
            public List<Long> getBuild_time() {
                return build_time;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/main/java/org/gradle/api/plugins/scala/ScalaBasePlugin.java

                JvmPluginsHelper.compileAgainstJavaOutputs(scalaCompile, sourceSet, objectFactory);
                JvmPluginsHelper.configureAnnotationProcessorPath(sourceSet, scalaSource, scalaCompile.getOptions(), project);
                scalaCompile.setDescription("Compiles the " + scalaSource + ".");
                scalaCompile.setSource(scalaSource);
                scalaCompile.getJavaLauncher().convention(getJavaLauncher(project));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 10:39:12 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  6. security/pkg/pki/ca/selfsignedcarootcertrotator_test.go

    	rotator0.checkAndRotateRootCert()
    	caSecret, err := client0.Secrets(rotator0.config.caStorageNamespace).Get(context.TODO(), rotator0.config.secretName, metav1.GetOptions{})
    	if !errors.IsNotFound(err) || caSecret != nil {
    		t.Errorf("CA secret should not exist, but get %v: %v", caSecret, err)
    	}
    }
    
    type rootCertItem struct {
    	caSecret                *v1.Secret
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 23:33:41 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  7. tests/integration/security/sds_ingress/util/util.go

    				}
    			}
    			// Check if Kubernetes secret is ready
    			return retry.UntilSuccess(func() error {
    				_, err := c.Kube().CoreV1().Secrets(ns).Get(context.TODO(), credName, metav1.GetOptions{})
    				if err != nil {
    					return fmt.Errorf("secret %v not found: %v", credName, err)
    				}
    				return nil
    			}, retry.Timeout(time.Second*5))
    		})
    	}
    	if err := wg.Wait().ErrorOrNil(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 05:12:36 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  8. pkg/registry/core/service/storage/storage.go

    	// we don't destroy it here explicitly.
    }
    
    // Get retrieves the object from the storage. It is required to support Patch.
    func (r *StatusREST) Get(ctx context.Context, name string, options *metav1.GetOptions) (runtime.Object, error) {
    	return r.store.Get(ctx, name, options)
    }
    
    // Update alters the status subset of an object.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    	// Deprecated: Added temporarily to simplify exposing RequestProgress for watch cache.
    	RequestWatchProgress(ctx context.Context) error
    }
    
    // GetOptions provides the options that may be provided for storage get operations.
    type GetOptions struct {
    	// IgnoreNotFound determines what is returned if the requested object is not found. If
    	// true, a zero object is returned. If false, an error is returned.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. cni/pkg/plugin/plugin.go

    	pod, err := client.CoreV1().Pods(podNamespace).Get(context.Background(), podName, metav1.GetOptions{})
    	if err != nil {
    		return false, err
    	}
    	ns, err := client.CoreV1().Namespaces().Get(context.Background(), podNamespace, metav1.GetOptions{})
    	if err != nil {
    		return false, err
    	}
    
    	return util.PodRedirectionEnabled(ns, pod), nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top