Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 45 for systemProperties (0.22 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

        //                                                                           Attribute
        //
        @Resource
        protected DynamicProperties systemProperties;
    
        @Resource
        protected WebConfigService webConfigService;
    
        @Resource
        protected FileConfigService fileConfigService;
    
        @Resource
        protected ProcessHelper processHelper;
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  2. 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) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 31K bytes
    - Viewed (0)
  3. build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts

                this.description = "Runs the cross-version tests against Gradle ${targetVersion.version}"
                this.systemProperties["org.gradle.integtest.versions"] = targetVersion.version
                this.systemProperties["org.gradle.integtest.crossVersion"] = "true"
                this.useJUnitPlatform {
                    includeEngines("cross-version-test-engine")
                }
            }
    
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 4.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/exec/Crawler.java

            }
    
            final CrawlingInfoHelper crawlingInfoHelper = ComponentUtil.getCrawlingInfoHelper();
            final DynamicProperties systemProperties = ComponentUtil.getSystemProperties();
    
            if (StringUtil.isNotBlank(options.propertiesPath)) {
                systemProperties.reload(options.propertiesPath);
            } else {
                try {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 24.1K bytes
    - Viewed (2)
  5. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

        //                                                                           Attribute
        //                                                                           =========
        @Resource
        protected DynamicProperties systemProperties;
    
        // ===================================================================================
        //                                                                               Hook
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  6. 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()));
                }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.5K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom

              </excludes>
              <systemProperties>
                <property>
                  <name>JAVA_HOME</name>
                  <value>${JAVA_HOME}</value>
                </property>
                <property>
                  <name>M2_HOME</name>
                  <value>${M2_HOME}</value>
                </property>
              </systemProperties>
            </configuration>
          </plugin>
        </plugins>
      </build>
    Plain Text
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Sat Nov 09 12:45:14 GMT 2019
    - 2.2K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom

              </excludes>
              <systemProperties>
                <property>
                  <name>JAVA_HOME</name>
                  <value>${JAVA_HOME}</value>
                </property>
                <property>
                  <name>M2_HOME</name>
                  <value>${M2_HOME}</value>
                </property>
              </systemProperties>
            </configuration>
          </plugin>
        </plugins>
      </build>
    Plain Text
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 2.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/exec/SuggestCreator.java

            }
        }
    
        private static int process(final Options options) {
            final DynamicProperties systemProperties = ComponentUtil.getSystemProperties();
    
            if (StringUtil.isNotBlank(options.propertiesPath)) {
                systemProperties.reload(options.propertiesPath);
            } else {
                try {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/ProjectBuildingRequest.java

         * from the runtime environment like {@link System#getProperties()} and environment variables.
         *
         * @param systemProperties The system properties, may be {@code null}.
         * @return This request, never {@code null}.
         */
        ProjectBuildingRequest setSystemProperties(Properties systemProperties);
    
        /**
         * Gets the system properties to use for interpolation and profile activation. The system properties are collected
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 7K bytes
    - Viewed (0)
Back to top