Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 6,414 for optionA (0.17 sec)

  1. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/DefaultInternalOptionsTest.groovy

            def value2 = options.getOption(new InternalFlag("prop2", false))
            value2.get()
            value2.explicit
    
            def value3 = options.getOption(new InternalFlag("prop3", true))
            !value3.get()
            value3.explicit
    
            def value4 = options.getOption(new InternalFlag("prop4", false))
            value4.get()
            value4.explicit
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/cases.go

    	Compact Option = compact
    )
    
    // TODO: option to preserve a normal form, if applicable?
    
    type options struct {
    	noLower bool
    	simple  bool
    
    	// TODO: segmenter, max ignorable, alternative versions, etc.
    
    	ignoreFinalSigma bool
    }
    
    func getOpts(o ...Option) (res options) {
    	for _, f := range o {
    		res = f(res)
    	}
    	return
    }
    
    func noLower(o options) options {
    	o.noLower = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

                        + numOfThreads + "]";
            }
    
        }
    
        static void initializeProbes() {
            // Force probes to be loaded
            ProcessProbe.getInstance();
            OsProbe.getInstance();
            JvmInfo.jvmInfo();
        }
    
        public static void main(final String[] args) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    type Profile struct {
    	options
    }
    
    func apply(o *options, opts []Option) {
    	for _, f := range opts {
    		f(o)
    	}
    }
    
    // New creates a new Profile.
    //
    // With no options, the returned Profile is the most permissive and equals the
    // Punycode Profile. Options can be passed to further restrict the Profile. The
    // MapForLookup and ValidateForRegistration options set a collection of options,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/cli/src/test/groovy/org/gradle/cli/CommandLineParserTest.groovy

            parser.option('a-option-other').hasDescription('this is option --a-option-other')
            parser.option('no-a-option').hasDescription('Disables option --a-option')
            parser.option('c-option')
            parser.option('no-c-option')
            def outstr = new StringWriter()
    
            expect:
            parser.printUsage(outstr)
            outstr.toString().readLines() == [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:00:57 UTC 2023
    - 20.8K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/tasks/options/OptionReader.java

                Option option = findOption(field);
                if (option != null) {
                    fieldOptionElements.add(FieldOptionElement.create(option, field, optionValueNotationParserFactory));
                }
            }
            return fieldOptionElements;
        }
    
        private Option findOption(Field field) {
            Option option = field.getAnnotation(Option.class);
            if (option != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 09:51:34 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionValuesIntegrationTest.groovy

            """
                import org.gradle.api.DefaultTask;
                import org.gradle.api.tasks.TaskAction;
                import org.gradle.api.tasks.options.Option;
                import org.gradle.api.tasks.options.OptionValues;
    
                import java.util.List;
                import java.util.ArrayList;
                
                public class SampleTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/autoscaling/v2/generated.proto

      // +optional
      optional string reason = 4;
    
      // message is a human-readable explanation containing details about
      // the transition
      // +optional
      optional string message = 5;
    }
    
    // HorizontalPodAutoscalerList is a list of horizontal pod autoscaler objects.
    message HorizontalPodAutoscalerList {
      // metadata is the standard list metadata.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/autoscaling/v2beta2/generated.proto

      // +optional
      optional string reason = 4;
    
      // message is a human-readable explanation containing details about
      // the transition
      // +optional
      optional string message = 5;
    }
    
    // HorizontalPodAutoscalerList is a list of horizontal pod autoscaler objects.
    message HorizontalPodAutoscalerList {
      // metadata is the standard list metadata.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v2beta2/generated.proto

      // +optional
      optional string reason = 4;
    
      // message is a human-readable explanation containing details about
      // the transition
      // +optional
      optional string message = 5;
    }
    
    // HorizontalPodAutoscalerList is a list of horizontal pod autoscaler objects.
    message HorizontalPodAutoscalerList {
      // metadata is the standard list metadata.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top