Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 184 for GetOptions (0.17 sec)

  1. platforms/core-runtime/cli/src/main/java/org/gradle/cli/CommandLineOption.java

        private boolean deprecated;
    
        public CommandLineOption(Iterable<String> options) {
            for (String option : options) {
                this.options.add(option);
            }
        }
    
        public Set<String> getOptions() {
            return options;
        }
    
        public CommandLineOption hasArgument(Class<?> argumentType) {
            this.argumentType = argumentType;
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:00:57 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/javadoc/internal/JavadocGenerator.java

            javadocExecHandleBuilder.setExecutable(spec.getExecutable());
            javadocExecHandleBuilder.execDirectory(spec.getWorkingDir()).options(spec.getOptions()).optionsFile(spec.getOptionsFile());
    
            ExecAction execAction = javadocExecHandleBuilder.getExecHandle();
            if (spec.isIgnoreFailures()) {
                execAction.setIgnoreExitValue(true);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. pkg/controlplane/reconcilers/instancecount.go

    	r.reconcilingLock.Lock()
    	defer r.reconcilingLock.Unlock()
    
    	if r.stopReconcilingCalled {
    		return nil
    	}
    
    	e, err := r.epAdapter.Get(metav1.NamespaceDefault, serviceName, metav1.GetOptions{})
    	if err != nil {
    		e = &corev1.Endpoints{
    			ObjectMeta: metav1.ObjectMeta{
    				Name:      serviceName,
    				Namespace: metav1.NamespaceDefault,
    			},
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  4. pkg/controlplane/import_known_versions_test.go

    	reflect.TypeOf(metav1.ObjectMeta{}):           true,
    	reflect.TypeOf(metav1.OwnerReference{}):       true,
    	reflect.TypeOf(metav1.LabelSelector{}):        true,
    	reflect.TypeOf(metav1.GetOptions{}):           true,
    	reflect.TypeOf(metav1.ListOptions{}):          true,
    	reflect.TypeOf(metav1.DeleteOptions{}):        true,
    	reflect.TypeOf(metav1.GroupVersionKind{}):     true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 22 18:47:31 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/bootstraptoken/node/token.go

    	for _, token := range tokens {
    
    		secretName := bootstraputil.BootstrapTokenSecretName(token.Token.ID)
    		secret, err := client.CoreV1().Secrets(metav1.NamespaceSystem).Get(context.TODO(), secretName, metav1.GetOptions{})
    		if secret != nil && err == nil && failIfExists {
    			return errors.Errorf("a token with id %q already exists", token.Token.ID)
    		}
    
    		updatedOrNewSecret := bootstraptokenv1.BootstrapTokenToSecret(&token)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. platforms/jvm/scala/src/main/java/org/gradle/api/tasks/scala/internal/GenerateScaladoc.java

            args.add(parameters.getOutputDirectory().get().getAsFile().getAbsolutePath());
    
            args.add("-classpath");
            args.add(parameters.getClasspath().getAsPath());
    
            args.addAll(parameters.getOptions().get());
    
            List<String> sourceFiles = new ArrayList<>();
            for (File sourceFile : parameters.getSources().getAsFileTree().getFiles()) {
                sourceFiles.add(sourceFile.getAbsolutePath());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. pkg/registry/core/resourcequota/storage/storage_test.go

    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    
    	object, err := storage.Get(ctx, "foo", &metav1.GetOptions{})
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	actual := object.(*api.ResourceQuota)
    	if actual.Name != resourcequota.Name {
    		t.Errorf("unexpected resourcequota: %#v", actual)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. pkg/registry/core/node/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: Mon Feb 27 20:38:11 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top