Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for SystemProperties (0.48 sec)

  1. compat/maven-embedder/src/main/java/org/apache/maven/cli/CliRequest.java

        Path rootDirectory;
    
        Path topDirectory;
    
        boolean verbose;
    
        boolean quiet;
    
        boolean showErrors = true;
    
        Properties userProperties = new Properties();
    
        Properties systemProperties = new Properties();
    
        MavenExecutionRequest request;
    
        CliRequest(String[] args, ClassWorld classWorld) {
            this.args = args;
            this.classWorld = classWorld;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Nov 08 08:49:11 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingRequest.java

        public Properties getSystemProperties() {
            return systemProperties;
        }
    
        @Override
        public ProjectBuildingRequest setSystemProperties(Properties systemProperties) {
            if (systemProperties != null) {
                this.systemProperties = SystemProperties.copyProperties(systemProperties);
            } else {
                this.systemProperties.clear();
            }
    
            return this;
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 10:13:56 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  3. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/BaseParserTest.java

            // maven installation
            Assertions.assertTrue(invokerRequest.systemProperties().containsKey("maven.property"));
            Assertions.assertEquals("yes it is", invokerRequest.systemProperties().get("maven.property"));
        }
    
        @Test
        void notHappy() {
            InvokerRequest invokerRequest = subject.parseInvocation(
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  4. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/FilterModelBuildingRequest.java

        public Properties getSystemProperties() {
            return request.getSystemProperties();
        }
    
        @Override
        public FilterModelBuildingRequest setSystemProperties(Properties systemProperties) {
            request.setSystemProperties(systemProperties);
    
            return this;
        }
    
        @Override
        public Properties getUserProperties() {
            return request.getUserProperties();
        }
    
        @Override
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

            }
            return goals;
        }
    
        @Override
        public Properties getSystemProperties() {
            if (systemProperties == null) {
                systemProperties = new Properties();
            }
    
            return systemProperties;
        }
    
        @Override
        public Properties getUserProperties() {
            if (userProperties == null) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Dec 12 11:02:17 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/exec/ThumbnailGenerator.java

            }
        }
    
        private static int process(final Options options) {
            final DynamicProperties systemProperties = ComponentUtil.getSystemProperties();
    
            if (StringUtil.isNotBlank(options.propertiesPath)) {
                systemProperties.reload(options.propertiesPath);
            } else {
                try {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            final DynamicProperties systemProperties = ComponentUtil.getSystemProperties();
            switch (ua) {
            case IE:
                if (isLocalFile) {
                    url = url.replaceFirst("file:/+", systemProperties.getProperty("file.protocol.winlocal.ie", "file://"));
                } else {
                    url = url.replaceFirst("file:/+", systemProperties.getProperty("file.protocol.ie", "file://"));
                }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 52.6K bytes
    - Viewed (0)
  8. src/main/resources/fess_config.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE components PUBLIC "-//DBFLUTE//DTD LastaDi 1.0//EN"
    	"http://dbflute.org/meta/lastadi10.dtd">
    <components>
    	<component name="systemProperties" class="org.codelibs.core.misc.DynamicProperties">
    		<arg>
    			org.codelibs.fess.util.ResourceUtil.getConfPath("system.properties")
    		</arg>
    	</component>
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jan 07 01:51:15 UTC 2016
    - 360 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java

            for (final String label : bugReportLabels) {
                itemList.add(createPropItem(label));
            }
    
            final DynamicProperties systemProperties = ComponentUtil.getSystemProperties();
            for (final Map.Entry<Object, Object> entry : systemProperties.entrySet()) {
                if (isBugReportTarget(entry.getKey())) {
                    itemList.add(createItem(entry.getKey(), entry.getValue()));
                }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

         * @return the complete URL
         */
        protected String buildDefaultUrl(final String path) {
            final DynamicProperties systemProperties = ComponentUtil.getSystemProperties();
            String baseUrl = systemProperties.getProperty(SAML_SP_BASE_URL);
            if (StringUtil.isBlank(baseUrl)) {
                baseUrl = "http://localhost:8080";
            }
            if (baseUrl.endsWith("/")) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Dec 14 01:18:25 UTC 2025
    - 20.2K bytes
    - Viewed (3)
Back to top