Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for OptionReader (0.23 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/options/OptionReader.java

    import java.util.Collection;
    import java.util.Deque;
    import java.util.HashMap;
    import java.util.HashSet;
    import java.util.List;
    import java.util.Map;
    import java.util.Objects;
    import java.util.Set;
    
    public class OptionReader {
        private final ListMultimap<Class<?>, OptionElement> cachedOptionElements = ArrayListMultimap.create();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 06 09:51:34 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/injected-services-should-have-service-scope-applied.txt

    Class <org.gradle.api.internal.tasks.compile.incremental.IncrementalCompilerFactory> is not annotated with @ServiceScope in (IncrementalCompilerFactory.java:0)
    Class <org.gradle.api.internal.tasks.options.OptionReader> is not annotated with @ServiceScope in (OptionReader.java:0)
    Class <org.gradle.api.logging.LoggingManager> is not annotated with @ServiceScope in (LoggingManager.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/options/OptionReaderTest.groovy

    import org.gradle.api.tasks.options.OptionValues
    import spock.lang.Issue
    import spock.lang.Specification
    
    class OptionReaderTest extends Specification {
    
        OptionReader reader
        int builtInOptionCount
    
        def setup() {
            reader = new OptionReader()
            builtInOptionCount = TaskOptionsGenerator.BUILT_IN_OPTIONS.size();
        }
    
        def "can read options linked to setter methods of a task"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 33.4K bytes
    - Viewed (0)
Back to top