Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 215 for Option (0.12 sec)

  1. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            CommandLine.Builder commandLineBuilder = new CommandLine.Builder();
            for (Option option : cliRequest.commandLine.getOptions()) {
                if (!String.valueOf(CLIManager.SET_USER_PROPERTY).equals(option.getOpt())) {
                    List<String> values = option.getValuesList();
                    for (ListIterator<String> it = values.listIterator(); it.hasNext(); ) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                    is FirAbstractSimpleImportingScope -> EXPLICIT
                    else -> LOCAL
                }
            }
    
            fun fromShortenOption(option: ShortenStrategy): ImportKind? = when (option) {
                ShortenStrategy.SHORTEN_AND_IMPORT -> EXPLICIT
                ShortenStrategy.SHORTEN_AND_STAR_IMPORT -> STAR
                else -> null
            }
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    If either option is disabled, the element that normally contains that content will be excluded from the XML report file.
    
    The default for each option is `true`.
    
    ===== outputPerTestCase
    
    The `outputPerTestCase` option, when enabled, associates any output logging generated during a test case to that test case in the results.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/runtime/framework.go

    		waitingPods:          options.waitingPods,
    		clientSet:            options.clientSet,
    		kubeConfig:           options.kubeConfig,
    		eventRecorder:        options.eventRecorder,
    		informerFactory:      options.informerFactory,
    		metricsRecorder:      options.metricsRecorder,
    		extenders:            options.extenders,
    		PodNominator:         options.podNominator,
    		parallelizer:         options.parallelizer,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	}
    	return Option(pow << maxLengthShift)
    }
    
    // isMaxLength reports whether an Option holds a maximum length.
    func isMaxLength(opt Option) bool {
    	return opt&maxLengthMask != 0
    }
    
    // maxLength returns the maximum length stored in an Option.
    func maxLength(opt Option) int {
    	return 1 << ((opt & maxLengthMask) >> maxLengthShift)
    }
    
    // Filter demangles a C++ or Rust symbol name,
    // returning the human-readable C++ or Rust name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  6. integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar

    $KnownOptionParserSta.class package org.gradle.cli; synchronized class CommandLineParser$KnownOptionParserSta extends CommandLineParser$OptionParserState { private final CommandLineParser$OptionString optionString; private final CommandLineOption option; private final ParsedCommandLine commandLine; private final CommandLineParser$ParserState state; private final java.util.List values; private void CommandLineParser$KnownOptionParserSta(CommandLineParser$OptionString, CommandLineOption, ParsedCommandLine,...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 62.2K bytes
    - Viewed (0)
  7. .teamcity/test-buckets.json

    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"language-java",
    					"build-cache-base",
    					"normalization-java",
    					"docs",
    					"build-option",
    					"toolchains-jvm",
    					"resources-http",
    					"execution",
    					"resources",
    					"internal-performance-testing",
    					"wrapper-shared"
    				]
    			},
    			{
    				"parallelizationMethod":{
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue.go

    func NewPriorityQueue(
    	lessFn framework.LessFunc,
    	informerFactory informers.SharedInformerFactory,
    	opts ...Option,
    ) *PriorityQueue {
    	options := defaultPriorityQueueOptions
    	if options.podLister == nil {
    		options.podLister = informerFactory.Core().V1().Pods().Lister()
    	}
    	for _, opt := range opts {
    		opt(&options)
    	}
    
    	comp := func(podInfo1, podInfo2 interface{}) bool {
    		pInfo1 := podInfo1.(*framework.QueuedPodInfo)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

     * The internal `@Option` and `@OptionValues` annotations — package `org.gradle.api.internal.tasks.options` — have been removed. Use the public link:{javadocPath}/org/gradle/api/tasks/options/Option.html[@Option] and link:{javadocPath}/org/gradle/api/tasks/options/OptionValues.html[@OptionValues] annotations instead.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    type OPTResource struct {
    	Options []Option
    }
    
    // An Option represents a DNS message option within OPTResource.
    //
    // The message option is part of the extension mechanisms for DNS as
    // defined in RFC 6891.
    type Option struct {
    	Code uint16 // option code
    	Data []byte
    }
    
    // GoString implements fmt.GoStringer.GoString.
    func (o *Option) GoString() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
Back to top