Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 5,233 for OptionS (0.27 sec)

  1. cmd/kubeadm/app/cmd/phases/join/controlplaneprepare.go

    	case "all":
    		flags = []string{
    			options.APIServerAdvertiseAddress,
    			options.APIServerBindPort,
    			options.CfgPath,
    			options.ControlPlane,
    			options.NodeName,
    			options.FileDiscovery,
    			options.TokenDiscovery,
    			options.TokenDiscoveryCAHash,
    			options.TokenDiscoverySkipCAHash,
    			options.TLSBootstrapToken,
    			options.TokenStr,
    			options.CertificateKey,
    			options.Patches,
    			options.DryRun,
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:46:34 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

        public static void main(final String[] args) {
            final Options options = new Options();
            final CmdLineParser parser = new CmdLineParser(options);
            try {
                parser.parseArgument(args);
            } catch (final CmdLineException e) {
                System.err.println(e.getMessage());
                System.err.println("java " + SuggestCreator.class.getCanonicalName() + " [options...] arguments...");
                parser.printUsage(System.err);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionIntegrationTest.groovy

            outputContains("""
    Options
         --myProp     Configures command line option 'myProp'.""")
        }
    
        def "can render option with help for Groovy task"() {
            given:
            buildFile << groovyTaskWithSingleOption('String')
            buildFile << sampleTask()
    
            when:
            succeeds('help', '--task', 'sample')
    
            then:
            outputContains("""
    Options
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  4. manifests/addons/dashboards/lib/panels.libsonnet

        local heatmap = g.panel.heatmap,
        local options = heatmap.options,
    
        base(title, targets, desc=''):
          heatmap.new(title)
          + heatmap.queryOptions.withTargets(targets)
          + heatmap.queryOptions.withInterval('1m')
          + options.calculation.xBuckets.withMode('size')
          + options.calculation.xBuckets.withValue('1min')
          + options.withCellGap(0)
          + options.color.withMode('scheme')
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (1)
  5. platforms/jvm/language-java/src/test/groovy/org/gradle/external/javadoc/StandardJavadocDocletOptionsTest.java

            // standard doclet options
            assertNull(options.getDestinationDirectory());
            assertFalse(options.isUse());
            assertFalse(options.isVersion());
            assertFalse(options.isAuthor());
            assertFalse(options.isSplitIndex());
            assertNull(options.getWindowTitle());
            assertNull(options.getDocTitle());
            assertNull(options.getFooter());
            assertNull(options.getBottom());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/io/ModelReader.java

        /**
         * The key for the option to enable strict parsing. This option is of type {@link Boolean} and defaults to {@code
         * true}. If {@code false}, unknown elements will be ignored instead of causing a failure.
         */
        String IS_STRICT = "org.apache.maven.model.io.isStrict";
    
        /**
         * The key for the option to enable tracking of line/column numbers. This option is of type
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. pkg/kubelet/network/dns/dns.go

    func appendOptions(options []string, newOption ...string) []string {
    	var optionMap = make(map[string]string)
    	for _, option := range options {
    		optName := strings.Split(option, ":")[0]
    		optionMap[optName] = option
    	}
    	for _, option := range newOption {
    		optName := strings.Split(option, ":")[0]
    		optionMap[optName] = option
    	}
    
    	options = []string{}
    	for _, v := range optionMap {
    		options = append(options, v)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 04 11:37:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  8. pkg/controlplane/apiserver/options/validation.go

    )
    
    func validateTokenRequest(options *Options) []error {
    	var errs []error
    
    	enableAttempted := options.ServiceAccountSigningKeyFile != "" ||
    		(len(options.Authentication.ServiceAccounts.Issuers) != 0 && options.Authentication.ServiceAccounts.Issuers[0] != "") ||
    		len(options.Authentication.APIAudiences) != 0
    
    	enableSucceeded := options.ServiceAccountIssuer != nil
    
    	if !enableAttempted {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 12:46:24 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/workflow/runner_test.go

    	var usecases = []struct {
    		name          string
    		options       RunnerOptions
    		expected      map[string]bool
    		expectedError bool
    	}{
    		{
    			name:     "no options > all phases",
    			options:  RunnerOptions{},
    			expected: map[string]bool{"foo": true, "foo/bar": true, "foo/baz": true, "qux": true},
    		},
    		{
    			name:     "options can filter phases",
    			options:  RunnerOptions{FilterPhases: []string{"foo/baz", "qux"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 20:03:45 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    		configCluster := opts.ClusterID == cluster.ID
    
    		options := opts
    		options.ClusterID = cluster.ID
    		if !configCluster {
    			options.SyncTimeout = features.RemoteClusterTimeout
    		}
    		log.Infof("Initializing Kubernetes service registry %q", options.ClusterID)
    		options.ConfigCluster = configCluster
    		kubeRegistry := NewController(client, options)
    		kubeController := &kubeController{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top