Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 345 for GetOptions (0.21 sec)

  1. pkg/volume/testing/volume_host.go

    func (f *fakeVolumeHost) GetSecretFunc() func(namespace, name string) (*v1.Secret, error) {
    	return func(namespace, name string) (*v1.Secret, error) {
    		return f.kubeClient.CoreV1().Secrets(namespace).Get(context.TODO(), name, metav1.GetOptions{})
    	}
    }
    
    func (f *fakeVolumeHost) GetExec(pluginName string) exec.Interface {
    	return f.exec
    }
    
    func (f *fakeVolumeHost) GetConfigMapFunc() func(namespace, name string) (*v1.ConfigMap, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. pkg/registry/apiserverinternal/storageversion/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.1K bytes
    - Viewed (0)
  3. pkg/registry/storagemigration/storagemigration/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 Mar 08 04:18:56 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/configuration/TaskDetails.java

            return group;
        }
    
        public String getPath() {
            return path;
        }
    
        public int getProjectDepth() {
            return projectDepth;
        }
    
        public List<OptionDetails> getOptions() {
            return options;
        }
    
        public static TaskDetails from(Task task, OptionReader optionReader) {
            String path = task.getPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 11 10:07:07 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. cni/pkg/plugin/kubernetes.go

    // getK8sPodInfo returns information of a POD
    func getK8sPodInfo(client kubernetes.Interface, podName, podNamespace string) (*PodInfo, error) {
    	pod, err := client.CoreV1().Pods(podNamespace).Get(context.TODO(), podName, metav1.GetOptions{})
    	if err != nil {
    		return nil, err
    	}
    
    	pi := ExtractPodInfo(pod)
    	log.Debugf("Pod %v/%v info: \n%+v", podNamespace, podName, pi)
    
    	return pi, nil
    }
    
    func ExtractPodInfo(pod *v1.Pod) *PodInfo {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/testFixtures/groovy/org/gradle/language/fixtures/AnnotationProcessorFixture.groovy

                        elementUtils = processingEnv.getElementUtils();
                        filer = processingEnv.getFiler();
                        messager = processingEnv.getMessager();
                        options = processingEnv.getOptions();
                    }
    
                    @Override
                    public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) {
                        Set<Element> elements = new HashSet<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 29 15:12:07 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmLanguageSourceDirectoryBuilder.java

                langSrcDir,
                project,
                compileTask,
                compileTask.map(task -> {
                    if (task instanceof HasCompileOptions) {
                        return ((HasCompileOptions) task).getOptions();
                    }
                    throw new UnsupportedOperationException("Unsupported compile task " + task.getClass().getName());
                })
            );
            if (includeInAllJava) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:44:05 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top