Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 210 for SystemProperties (0.25 sec)

  1. 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jan 07 01:51:15 UTC 2016
    - 360 bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/SequentialOutputMatcher.groovy

    import org.gradle.internal.SystemProperties
    import org.gradle.util.internal.TextUtil
    import org.junit.Assert
    /**
     * Check that the actual output lines match the expected output lines in content and order.
     */
    class SequentialOutputMatcher {
        private static final String NL = SystemProperties.instance.lineSeparator
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/AbstractLineChoppingStyledTextOutputTest.groovy

        private static final String WINDOWS_EOL = "\r\n"
        private static final String SYSTEM_EOL = SystemProperties.instance.getLineSeparator();
        private static final def EOLS = [
            ["System", SYSTEM_EOL],
            ["*nix", NIX_EOL],
            ["Windows", WINDOWS_EOL]
        ]
        @Rule final SetSystemProperties systemProperties = new SetSystemProperties()
        final StringBuilder result = new StringBuilder()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. 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;
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/StyledTextOutputBackedRendererTest.groovy

     * limitations under the License.
     */
    package org.gradle.internal.logging.console
    
    import org.gradle.api.logging.LogLevel
    import org.gradle.internal.SystemProperties
    import org.gradle.internal.logging.OutputSpecification
    import org.gradle.internal.logging.events.LogLevelChangeEvent
    import org.gradle.internal.logging.events.RenderableOutputEvent
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. platforms/jvm/jvm-services/src/test/groovy/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetectorTest.groovy

            then:
            metadata
            tmpDir.assertIsEmptyDir()
        }
    
        def "can detect metadata of #displayName"() {
            given:
            def execHandleFactory = createExecHandleFactory(systemProperties)
    
            when:
            def detector = createDefaultJvmMetadataDetector(execHandleFactory)
            File javaHome = new File(temporaryFolder, jdk).tap { mkdirs() }
            if (!jre) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/AbstractStyledTextOutputTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.internal.logging.text
    
    import org.gradle.internal.SystemProperties
    import org.gradle.internal.logging.OutputSpecification
    import org.gradle.internal.logging.text.StyledTextOutput.Style
    
    class AbstractStyledTextOutputTest extends OutputSpecification {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/operations/DefaultBuildOperationExecutor.java

     * limitations under the License.
     */
    
    package org.gradle.internal.operations;
    
    import org.gradle.api.Action;
    import org.gradle.api.GradleException;
    import org.gradle.internal.SystemProperties;
    import org.gradle.internal.concurrent.ExecutorFactory;
    import org.gradle.internal.concurrent.ManagedExecutor;
    import org.gradle.internal.concurrent.Stoppable;
    import org.gradle.internal.concurrent.WorkerLimits;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top