Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 395 for GetOptions (0.33 sec)

  1. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/internal/ScaladocParameters.java

    public interface ScaladocParameters extends WorkParameters {
        RegularFileProperty getOptionsFile();
    
        ConfigurableFileCollection getClasspath();
    
        DirectoryProperty getOutputDirectory();
    
        ListProperty<String> getOptions();
    
        ConfigurableFileCollection getSources();
    
        Property<Boolean> getIsScala3();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/util.go

    		if ip == "" {
    			return nil, false, fmt.Errorf("no Host IP available on the remote service node yet")
    		}
    
    		svc, err := cluster.Kube().CoreV1().Services(ns).Get(context.TODO(), svcName, metav1.GetOptions{})
    		if err != nil {
    			return nil, false, err
    		}
    
    		if len(svc.Spec.Ports) == 0 {
    			return nil, false, fmt.Errorf("no ports found in service: %s/%s", ns, svcName)
    		}
    
    		var nodePort int32
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  3. pkg/test/kube/util.go

    	var endpoints *corev1.Endpoints
    	err := retry.UntilSuccess(func() error {
    		s, err := a.CoreV1().Services(ns).Get(context.TODO(), name, metav1.GetOptions{})
    		if err != nil {
    			return err
    		}
    
    		eps, err := a.CoreV1().Endpoints(ns).Get(context.TODO(), name, metav1.GetOptions{})
    		if err != nil {
    			return err
    		}
    		if len(eps.Subsets) == 0 {
    			return fmt.Errorf("%s/%v endpoint not ready: no subsets", ns, name)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  4. pkg/registry/certificates/certificates/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
    - 6.3K bytes
    - Viewed (0)
  5. pkg/controller/garbagecollector/patch.go

    	if !ok || m == nil {
    		// If local cache doesn't exist for mapping.Resource, send a GET request to API server
    		return gc.metadataClient.Resource(apiResource).Namespace(namespace).Get(context.TODO(), name, metav1.GetOptions{})
    	}
    	key := name
    	if len(namespace) != 0 {
    		key = namespace + "/" + name
    	}
    	raw, exist, err := m.store.GetByKey(key)
    	if err != nil {
    		return nil, err
    	}
    	if !exist {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 13:33:52 UTC 2021
    - 5.6K bytes
    - Viewed (0)
  6. pkg/kubelet/configmap/configmap_manager.go

    }
    
    func (s *simpleConfigMapManager) GetConfigMap(namespace, name string) (*v1.ConfigMap, error) {
    	return s.kubeClient.CoreV1().ConfigMaps(namespace).Get(context.TODO(), name, metav1.GetOptions{})
    }
    
    func (s *simpleConfigMapManager) RegisterPod(pod *v1.Pod) {
    }
    
    func (s *simpleConfigMapManager) UnregisterPod(pod *v1.Pod) {
    }
    
    // configMapManager keeps a cache of all configmaps necessary
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. pkg/kubelet/secret/secret_manager.go

    	return &simpleSecretManager{kubeClient: kubeClient}
    }
    
    func (s *simpleSecretManager) GetSecret(namespace, name string) (*v1.Secret, error) {
    	return s.kubeClient.CoreV1().Secrets(namespace).Get(context.TODO(), name, metav1.GetOptions{})
    }
    
    func (s *simpleSecretManager) RegisterPod(pod *v1.Pod) {
    }
    
    func (s *simpleSecretManager) UnregisterPod(pod *v1.Pod) {
    }
    
    // secretManager keeps a store with secrets necessary
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. platforms/jvm/language-jvm/src/main/java/org/gradle/api/internal/tasks/compile/HasCompileOptions.java

     * limitations under the License.
     */
    package org.gradle.api.internal.tasks.compile;
    
    import org.gradle.api.tasks.compile.CompileOptions;
    
    public interface HasCompileOptions {
        CompileOptions getOptions();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 789 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/authentication/serviceaccount/util.go

    	if err == nil {
    		return sa, nil
    	}
    	if !apierrors.IsNotFound(err) {
    		return nil, err
    	}
    
    	// Create the namespace if we can't verify it exists.
    	// Tolerate errors, since we don't know whether this component has namespace creation permissions.
    	if _, err := coreClient.Namespaces().Get(context.TODO(), namespace, metav1.GetOptions{}); apierrors.IsNotFound(err) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/javadoc/internal/JavadocSpec.java

        private boolean ignoreFailures;
        private File workingDir;
        private File optionsFile;
        private String executable;
    
        public void setOptions(MinimalJavadocOptions options) {
            this.options = options;
        }
    
        public MinimalJavadocOptions getOptions() {
            return options;
        }
    
        public void setIgnoreFailures(boolean ignoreFailures) {
            this.ignoreFailures = ignoreFailures;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top