Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 5,273 for Option (0.13 sec)

  1. platforms/ide/ide-plugins/src/test/resources/org/gradle/plugins/ide/idea/model/customProject.xml

        <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" />
        <option name="OPTION_DOCUMENT_TAG_AUTHOR" value="false" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. pkg/bootstrap/config.go

    				opts = append(opts,
    					option.Localhost(option.LocalhostIPv6),
    					option.AdditionalLocalhost(option.LocalhostIPv4),
    					option.Wildcard(option.WildcardIPv6),
    					option.AdditionalWildCard(option.WildcardIPv4),
    					option.DNSLookupFamily(option.DNSLookupFamilyIPS))
    			} else {
    				opts = append(opts,
    					option.Localhost(option.LocalhostIPv4),
    					option.AdditionalLocalhost(option.LocalhostIPv6),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r61/GradleProjectBuilderOptionsCrossVersionSpec.groovy

            """
    
            when:
            def project = loadToolingModel(GradleProject) {
                if (option != null) {
                    // important to set arguments, and not JVM arguments, as it's what is used by Android Studio to set the option
                    it.withArguments("-Dorg.gradle.internal.GradleProjectBuilderOptions=$option")
                }
            }
    
            then:
            result.assertOutputContains("realizing non-lazy task")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/cli/src/main/java/org/gradle/cli/ParsedCommandLine.java

        /**
         * Returns true if the given option is present in this command-line.
         *
         * @param option The option, without the '-' or '--' prefix.
         * @return true if the option is present.
         */
        public boolean hasOption(String option) {
            option(option);
            return presentOptions.contains(option);
        }
    
        /**
         * Returns true if the given option was present in this command-line,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:00:57 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. .idea/runConfigurations/Low_Level_API_FIR_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="analysisLowLevelApiFirAllTests" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 01 17:29:07 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/options/OptionReaderTest.groovy

            then:
            options.size() == ownOptions + builtInOptionCount
            options[0].name == "my-option"
            options[0].description == "Option to trigger creation of opposite option"
            options[1].name == "no-my-option"
            options[1].description == "Option clashing with opposite option"
            options[2].name == "rerun"
            options[2].description == "Causes the task to be re-run even if up-to-date."
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 33.4K bytes
    - Viewed (0)
  7. .idea/runConfigurations/Low_Level_API_FIR_Lincheck_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:low-level-api-fir:tests-jdk11:test" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Mar 01 17:29:07 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. .idea/runConfigurations/Test__Partial_Linkage_JS___with_IC.xml

        <ExternalSystemSettings>
          <option name="executionName" />
          <option name="externalProjectPath" value="$PROJECT_DIR$" />
          <option name="externalSystemIdString" value="GRADLE" />
          <option name="scriptParameters" value="--stacktrace" />
          <option name="taskDescriptions">
            <list />
          </option>
          <option name="taskNames">
            <list>
              <option value=":js:js.tests:test" />
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Mar 29 15:41:06 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/core/beans/util/CopyOptionsTest.java

            assertThat(option.prefix, is("search_"));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testBeanDelimiter() throws Exception {
            final CopyOptions option = new CopyOptions();
            assertThat(option.beanDelimiter('#'), is(sameInstance(option)));
            assertThat(option.beanDelimiter, is('#'));
        }
    
        /**
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/tasks/options/MethodOptionElement.java

        private static String assertValidOptionName(Option option, String elementName, Class<?> declaredClass) {
            if (option.option().length() == 0) {
                throw new OptionValidationException(String.format("No option name set on '%s' in class '%s'.", elementName, declaredClass.getName()));
            }
            return option.option();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 11 11:28:20 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top