Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 6,867 for Option (0.18 sec)

  1. .idea/runConfigurations/Generate_standard_library_sources.xml

        <ExternalSystemSettings>
          <option name="executionName" />
          <option name="externalProjectPath" value="$PROJECT_DIR$/libraries/tools/kotlin-stdlib-gen" />
          <option name="externalSystemIdString" value="GRADLE" />
          <option name="scriptParameters" value="" />
          <option name="taskDescriptions">
            <list />
          </option>
          <option name="taskNames">
            <list>
              <option value="run" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Sun Jun 26 18:29:57 UTC 2022
    - 989 bytes
    - Viewed (0)
  2. .idea/runConfigurations/Test__Partial_Linkage_Native___cache_everywhere.xml

        <ExternalSystemSettings>
          <option name="executionName" />
          <option name="externalProjectPath" value="$PROJECT_DIR$" />
          <option name="externalSystemIdString" value="GRADLE" />
          <option name="scriptParameters" value="--stacktrace -Pkotlin.internal.native.test.cacheMode=STATIC_EVERYWHERE" />
          <option name="taskDescriptions">
            <list />
          </option>
          <option name="taskNames">
            <list>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Mar 29 15:41:06 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. 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)
  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/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)
  6. 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)
  7. 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)
  8. 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)
  9. .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)
  10. subprojects/core/src/test/groovy/org/gradle/execution/commandline/CommandLineTaskConfigurerSpec.groovy

            public void setSomeFlag2(Boolean someFlag2) {
                this.someFlag2 = someFlag2
            }
    
            @Option(option = "notUsed", description = "Not used.")
            public void setNotUsed(boolean notUsed) {
                throw new RuntimeException("Not used");
            }
    
            TestEnum anEnum
    
            @Option(option = "someEnum", description = "some enum value.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 09 09:06:36 UTC 2020
    - 6.9K bytes
    - Viewed (0)
Back to top