Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,174 for op_eon (0.13 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TaskBooleanOptionIntegrationTest.groovy

                import org.gradle.api.tasks.options.Option;
    
                public class SampleTask extends DefaultTask {
    
                    @Option(option = "my-option", description = "Option to trigger generation of opposite option.")
                    private Boolean myOption;
    
                    @Option(option = "no-my-option", description = "Option clashing with generated opposite option.")
                    private Boolean noMyOption;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/options/OptionReaderTest.groovy

            @Option(option = 'unique', description = "custom unique option")
            String field1
            @Option(option = 'rerun', description = "custom clashing option")
            String field2
        }
    
        public static class TestClassWithOppositeOptionNameClashing {
            @Option(option = 'my-option', description = "Option to trigger creation of opposite option")
            Boolean field1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 33.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    [[sec:declaring_task_option]]
    === Step 1. Declare a command-line option
    
    To expose a new command line option for a task property, annotate the corresponding setter method of a property with link:{javadocPath}/org/gradle/api/tasks/options/Option.html[Option]:
    
    ```
    @Option(option = "flag", description = "Sets the flag")
    ```
    
    An option requires a mandatory identifier.
    You can provide an optional description.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompilerFactory.java

    import sbt.internal.inc.AnalyzingCompiler$;
    import sbt.internal.inc.RawCompiler;
    import sbt.internal.inc.ScalaInstance;
    import sbt.internal.inc.ZincUtil;
    import sbt.internal.inc.classpath.ClassLoaderCache;
    import scala.Option;
    import scala.collection.JavaConverters;
    import xsbti.ArtifactInfo;
    import xsbti.compile.ClasspathOptionsUtil;
    import xsbti.compile.ScalaCompiler;
    import xsbti.compile.ZincCompilerUtil;
    
    import java.io.File;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/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)
  8. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilderTest.groovy

            builder.build() == defaultOptions
        }
    
        def "generates -source option when current Jvm Version is used"() {
            spec.sourceCompatibility = JavaVersion.current().toString()
    
            expect:
            builder.build() == ["-source", JavaVersion.current().toString()] + defaultOptions
        }
    
        def "generates -source option when compatibility differs from current Jvm version"() {
            spec.sourceCompatibility = "1.6"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:36 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

            return Optional.ofNullable(option);
        }
    
        /**
         * Returns the option followed by a string representation of the given path elements.
         * For example, if this type is {@link #MODULES}, then the option is {@code "--module-path"}
         * followed by the specified path elements.
         *
         * @param paths the path to format as a tool option
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. 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)
Back to top