Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 5,635 for Option (0.17 sec)

  1. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/UserQuestions.java

        /**
         * Creates a {@link Choice} that can ask the user to select an option from the given list and returns the answer.
         * Uses the {@link Object#toString()} representation of the options to format the prompt, the returned {@link Choice} can be used to change this.
         * Does not prompt the user when there is only one option in the given list.
         *
         * @param question The text of the question.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cpumanager/policy_options.go

    )
    
    // CheckPolicyOptionAvailable verifies if the given option can be used depending on the Feature Gate Settings.
    // returns nil on success, or an error describing the failure on error.
    func CheckPolicyOptionAvailable(option string) error {
    	if !alphaOptions.Has(option) && !betaOptions.Has(option) && !stableOptions.Has(option) {
    		return fmt.Errorf("unknown CPU Manager Policy option: %q", option)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    // Other strategies are also viable, though:
    // Option 1) Return an empty string in case of error, but allow the user to
    //    specify explicitly which errors to ignore.
    // Option 2) Return the partially evaluated string if it is itself a valid
    //    string, otherwise return the empty string in case of error.
    // Option 3) Option 1 and 2.
    // Option 4) Always return an empty string for now and implement Option 1 as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/resources/org/gradle/plugins/ide/idea/model/defaultProject.xml

        <component name="JavadocGenerationManager">
            <option name="OUTPUT_DIRECTORY"/>
            <option name="OPTION_SCOPE" value="protected"/>
            <option name="OPTION_HIERARCHY" value="true"/>
            <option name="OPTION_NAVIGATOR" value="true"/>
            <option name="OPTION_INDEX" value="true"/>
            <option name="OPTION_SEPARATE_INDEX" value="true"/>
            <option name="OPTION_DOCUMENT_TAG_USE" value="false"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/orig/view/advance.jsp

    						<option value=""><la:message key="labels.advance_search_filetype_default" /></option>
    						<option value="html" <c:if test="${as.filetype.contains('html')}">selected</c:if>><la:message
    								key="labels.advance_search_filetype_html"
    							/></option>
    						<option value="pdf" <c:if test="${as.filetype.contains('pdf')}">selected</c:if>><la:message
    								key="labels.advance_search_filetype_pdf"
    							/></option>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/tasks/TaskOptionsGenerator.java

    import org.gradle.api.Task;
    import org.gradle.api.internal.tasks.options.BooleanOptionElement;
    import org.gradle.api.internal.tasks.options.BuiltInOptionElement;
    import org.gradle.api.internal.tasks.options.InstanceOptionDescriptor;
    import org.gradle.api.internal.tasks.options.OptionDescriptor;
    import org.gradle.api.internal.tasks.options.OptionElement;
    import org.gradle.api.internal.tasks.options.OptionReader;
    import org.gradle.api.specs.Specs;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 28 09:20:18 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. .idea/runConfigurations/Analysis_API_FE1_0_Tests.xml

        <ExternalSystemSettings>
          <option name="executionName" />
          <option name="externalProjectPath" value="$PROJECT_DIR$" />
          <option name="externalSystemIdString" value="GRADLE" />
          <option name="scriptParameters" value="" />
          <option name="taskDescriptions">
            <list />
          </option>
          <option name="taskNames">
            <list>
              <option value=":analysis:analysis-api-fe10:test" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 13:39:42 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. test/typeparam/issue47272.go

    package main
    
    import (
    	"errors"
    	"fmt"
    )
    
    type Option[T any] struct {
    	ok  bool
    	val T
    }
    
    func (o Option[T]) String() string {
    	if o.ok {
    		return fmt.Sprintf("Some(%v)", o.val)
    	}
    	return "None"
    }
    
    func Some[T any](val T) Option[T] { return Option[T]{ok: true, val: val} }
    func None[T any]() Option[T]      { return Option[T]{ok: false} }
    
    type Result[T, E any] struct {
    	ok  bool
    	val T
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1K bytes
    - Viewed (0)
  9. .idea/runConfigurations/Test__Commonizer___Light.xml

        <ExternalSystemSettings>
          <option name="executionName" />
          <option name="externalProjectPath" value="$PROJECT_DIR$" />
          <option name="externalSystemIdString" value="GRADLE" />
          <option name="scriptParameters" value="" />
          <option name="taskDescriptions">
            <list />
          </option>
          <option name="taskNames">
            <list>
              <option value=":native:kotlin-klib-commonizer-api:test" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 05 14:25:01 UTC 2023
    - 1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/StartParameterInternal.java

        private WatchMode watchFileSystemMode = WatchMode.DEFAULT;
        private boolean watchFileSystemDebugLogging;
        private boolean vfsVerboseLogging;
    
        private Option.Value<Boolean> configurationCache = Option.Value.defaultValue(false);
        private Option.Value<Boolean> isolatedProjects = Option.Value.defaultValue(false);
        private ConfigurationCacheProblemsOption.Value configurationCacheProblems = ConfigurationCacheProblemsOption.Value.FAIL;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 29 08:08:36 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top