Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 395 for GetOptions (0.15 sec)

  1. tests/integration/pilot/multicluster_test.go

    					t.Logf("error cleaning up %s: %v", pod, err)
    				}
    			})
    
    			retry.UntilSuccessOrFail(t, func() error {
    				pod, err := pods.Get(context.TODO(), pod, metav1.GetOptions{})
    				if err != nil {
    					return err
    				}
    				for _, status := range pod.Status.ContainerStatuses {
    					if status.Started != nil && !*status.Started {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/kube/instance.go

    	c.id = ctx.TrackResource(c)
    
    	// Now retrieve the service information to find the ClusterIP
    	s, err := c.cluster.Kube().CoreV1().Services(cfg.Namespace.Name()).Get(context.TODO(), cfg.Service, metav1.GetOptions{})
    	if err != nil {
    		return nil, err
    	}
    
    	c.clusterIP = s.Spec.ClusterIP
    	c.clusterIPs = s.Spec.ClusterIPs
    	switch c.clusterIP {
    	case corev1.ClusterIPNone, "":
    		if !cfg.Headless {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 16 18:55:23 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/customresourcedefinition.go

    	Delete(ctx context.Context, name string, opts metav1.DeleteOptions) error
    	DeleteCollection(ctx context.Context, opts metav1.DeleteOptions, listOpts metav1.ListOptions) error
    	Get(ctx context.Context, name string, opts metav1.GetOptions) (*v1.CustomResourceDefinition, error)
    	List(ctx context.Context, opts metav1.ListOptions) (*v1.CustomResourceDefinitionList, error)
    	Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, 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. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	}
    	if _, err := getFn(ctx, foo); err != nil {
    		t.Fatalf("did not gracefully delete resource: %v", err)
    	}
    
    	object, err := t.storage.(rest.Getter).Get(ctx, objectMeta.GetName(), &metav1.GetOptions{})
    	if err != nil {
    		t.Fatalf("unexpected error, object should exist: %v", err)
    	}
    	objectMeta = t.getObjectMetaOrFail(object)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/TestFramework.java

         * executed.
         */
        @Internal
        TestFrameworkDetector getDetector();
    
        @Nested
        TestFrameworkOptions getOptions();
    
        /**
         * Returns a factory which is used to create a {@link org.gradle.api.internal.tasks.testing.TestClassProcessor} in
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformTestFramework.java

        }
    
        @Override
        public boolean getUseDistributionDependencies() {
            return useImplementationDependencies;
        }
    
        @Override
        public JUnitPlatformOptions getOptions() {
            return options;
        }
    
        @Override
        public TestFrameworkDetector getDetector() {
            return null;
        }
    
        @Override
        public void close() throws IOException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. pkg/controlplane/controller/apiserverleasegc/gc_controller.go

    		if !isLeaseExpired(lease) {
    			continue
    		}
    		// double check latest lease from apiserver before deleting
    		lease, err := c.kubeclientset.CoordinationV1().Leases(c.leaseNamespace).Get(context.TODO(), lease.Name, metav1.GetOptions{})
    		if err != nil && !errors.IsNotFound(err) {
    			klog.ErrorS(err, "Error getting lease")
    			continue
    		}
    		if errors.IsNotFound(err) || lease == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 25 03:27:44 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/dcerpc/DcerpcBinding.java

    
        /**
         * @return the proto
         */
        public String getProto () {
            return this.proto;
        }
    
    
        /**
         * @return the options
         */
        public Map<String, Object> getOptions () {
            return this.options;
        }
    
    
        /**
         * @return the server
         */
        public String getServer () {
            return this.server;
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.5K bytes
    - Viewed (0)
  9. pkg/registry/apps/daemonset/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: Fri Nov 18 09:21:19 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  10. pkg/registry/batch/cronjob/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: Fri Nov 18 09:21:19 UTC 2022
    - 4.3K bytes
    - Viewed (0)
Back to top