Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 210 for SystemProperties (0.2 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/SystemProperties.java

        private static final Set<String> IMPORTANT_NON_STANDARD_PROPERTIES = Collections.singleton("java.runtime.version");
    
        private static final SystemProperties INSTANCE = new SystemProperties();
    
        public static SystemProperties getInstance() {
            return INSTANCE;
        }
    
        private SystemProperties() {
        }
    
        public String getLineSeparator() {
            return System.getProperty("line.separator");
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/properties/internal/SystemProperties.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.properties.internal;
    
    import java.util.Properties;
    
    /**
     * @since 3.2.3
     */
    public class SystemProperties {
        /**
         * Thread-safe System.properties copy implementation.
         */
        public static void addSystemProperties(Properties props) {
            props.putAll(getSystemProperties());
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tutorial/systemProperties/tests-common/systemProperties.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 132 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tutorial/systemProperties/tests-groovy/systemProperties.groovy.sample.conf

    executable: gradle
    args: printProperty
    flags: "--quiet --stacktrace -I init.gradle"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 127 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tutorial/systemProperties/tests-kotlin/systemProperties.kotlin.sample.conf

    executable: gradle
    args: printProperty
    flags: "--quiet --stacktrace -I init.gradle.kts"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 131 bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingRequest.java

        }
    
        public Properties getSystemProperties() {
            return systemProperties;
        }
    
        public ProjectBuildingRequest setSystemProperties(Properties systemProperties) {
            if (systemProperties != null) {
                this.systemProperties = SystemProperties.copyProperties(systemProperties);
            } else {
                this.systemProperties.clear();
            }
    
            return this;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/profile/DefaultProfileActivationContext.java

            return setSystemProperties(toMap(systemProperties));
        }
    
        /**
         * Sets the system properties to use for interpolation and profile activation. The system properties are collected
         * from the runtime environment like {@link System#getProperties()} and environment variables.
         *
         * @param systemProperties The system properties, may be {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. maven-settings-builder/src/main/java/org/apache/maven/settings/building/DefaultSettingsBuildingRequest.java

        public Properties getSystemProperties() {
            if (systemProperties == null) {
                systemProperties = new Properties();
            }
    
            return systemProperties;
        }
    
        @Override
        public DefaultSettingsBuildingRequest setSystemProperties(Properties systemProperties) {
            if (systemProperties != null) {
                this.systemProperties = new Properties();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/DefaultToolchainConfiguration.java

        private final SystemProperties systemProperties;
        private final Map<String, String> environment;
    
        @Inject
        public DefaultToolchainConfiguration() {
            this(OperatingSystem.current(), SystemProperties.getInstance(), System.getenv());
        }
    
        @VisibleForTesting
        DefaultToolchainConfiguration(OperatingSystem os, SystemProperties systemProperties, Map<String, String> environment) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/exec/DefaultBuildActionParameters.java

            this.currentDir = currentDir;
            this.logLevel = logLevel;
            this.useDaemon = useDaemon;
            assert systemProperties != null;
            assert envVariables != null;
            this.systemProperties = new HashMap<String, String>();
            GUtil.addToMap(this.systemProperties, systemProperties);
            this.envVariables = new HashMap<String, String>(envVariables);
            this.injectedPluginClasspath = injectedPluginClasspath;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top