Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getSystemProperties (0.11 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            ComponentUtil.getSystemProperties().store();
        }
    
        default String getSystemProperty(final String key) {
            return ComponentUtil.getSystemProperties().getProperty(key, System.getProperty(Constants.SYSTEM_PROP_PREFIX + key));
        }
    
        default String getSystemProperty(final String key, final String defaultValue) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Oct 12 01:54:15 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                return profiles;
            }
            final Interpolator xform = new RegexBasedInterpolator();
            xform.setCacheAnswers(true);
            Stream.of(context.getUserProperties(), context.getSystemProperties())
                    .map(MapBasedValueSource::new)
                    .forEach(xform::addValueSource);
    
            class ProfileInterpolator extends MavenTransformer
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 83.6K bytes
    - Viewed (0)
  3. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            if (commandLine.hasOption(BATCH_MODE) || commandLine.hasOption(NON_INTERACTIVE)) {
                request.setInteractiveMode(false);
            } else {
                boolean runningOnCI = isRunningOnCI(cliRequest.getSystemProperties());
                if (runningOnCI) {
                    slf4jLogger.info(
                            "Making this build non-interactive, because the environment variable CI equals \"true\"."
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 76.8K bytes
    - Viewed (0)
  4. .teamcity/.mvn/wrapper/maven-wrapper.jar

    private java.io.File getBaseDir(String); } org/apache/maven/wrapper/SystemPropertiesHand.class package org.apache.maven.wrapper; public synchronized class SystemPropertiesHand { public void SystemPropertiesHand(); public static java.util.Map getSystemProperties(java.io.File); } org/apache/maven/wrapper/WrapperConfiguration.class package org.apache.maven.wrapper; public synchronized class WrapperConfiguration { public static final String ALWAYS_UNPACK_ENV = MAVEN_WRAPPER_ALWAYS_UNPACK; public static...
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 49.5K bytes
    - Viewed (0)
  5. compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                        systemPath = systemPath.replace('/', File.separatorChar).replace('\\', File.separatorChar);
                        String jdkHome =
                                request.getSystemProperties().getProperty("java.home", EMPTY) + File.separator + "..";
                        if (systemPath.startsWith(jdkHome)) {
                            msg += ". Please verify that you run Maven using a JDK and not just a JRE.";
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 77.1K bytes
    - Viewed (0)
Back to top