Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for applyFromProperty (0.45 sec)

  1. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/ListBuildOption.java

        public ListBuildOption(String property, CommandLineOptionConfiguration... commandLineOptionConfigurations) {
            super(property, commandLineOptionConfigurations);
        }
    
        @Override
        public void applyFromProperty(Map<String, String> properties, T settings) {
            String value = properties.get(property);
    
            if (value != null) {
                String[] splitValues = value.split("\\s*,\\s*");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/LoggingConfigurationBuildOptions.java

                    CommandLineOptionConfiguration.create(DEBUG_LONG_OPTION, DEBUG_SHORT_OPTION, "Log in debug mode (includes normal stacktrace).")
                );
            }
    
            @Override
            public void applyFromProperty(Map<String, String> properties, LoggingConfiguration settings) {
                String value = properties.get(property);
    
                if (value != null) {
                    LogLevel level = parseLogLevel(value);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/IntegerBuildOption.java

        public IntegerBuildOption(String property, CommandLineOptionConfiguration... commandLineOptionConfigurations) {
            super(property, commandLineOptionConfigurations);
        }
    
    
        @Override
        public void applyFromProperty(Map<String, String> properties, T settings) {
            OptionValue<String> propertyValue = getFromProperties(properties);
            String value = propertyValue.getValue();
            if (value != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 11:25:33 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/BooleanBuildOption.java

            super(property, deprecatedProperty, commandLineOptionConfigurations);
        }
    
        @Override
        public void applyFromProperty(Map<String, String> properties, T settings) {
            OptionValue<String> propertyValue = getFromProperties(properties);
            String value = propertyValue.getValue();
            if (value != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 11:25:33 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/EnumBuildOption.java

            this(displayName, enumClass, possibleValues, gradleProperty, null, commandLineOptionConfigurations);
        }
    
        @Override
        public void applyFromProperty(Map<String, String> properties, T settings) {
            OptionValue<String> propertyValue = getFromProperties(properties);
            String value = propertyValue.getValue();
            if (value != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top