Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for systemProperties (0.21 sec)

  1. 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>
    
    XML
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Jan 07 01:51:15 GMT 2016
    - 360 bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/settings/DefaultMavenSettingsBuilder.java

    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import java.io.File;
    import java.io.IOException;
    
    import org.apache.maven.execution.MavenExecutionRequest;
    import org.apache.maven.properties.internal.SystemProperties;
    import org.apache.maven.settings.building.DefaultSettingsBuildingRequest;
    import org.apache.maven.settings.building.SettingsBuilder;
    import org.apache.maven.settings.building.SettingsBuildingException;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 6.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

            assertEquals(0, crawlingConfigHelper.getExcludedUrlList("123").size());
            systemProperties.setProperty(Constants.FAILURE_COUNT_THRESHOLD_PROPERTY, "0");
            assertEquals(0, crawlingConfigHelper.getExcludedUrlList("123").size());
            errorCount.set(5);
            assertEquals(5, crawlingConfigHelper.getExcludedUrlList("123").size());
            systemProperties.setProperty(Constants.IGNORE_FAILURE_TYPE_PROPERTY, "TestError0");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 23.2K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/ApiRunner.java

            return injector.getInstance(Session.class);
        }
    
        static class DefaultSession extends AbstractSession {
    
            private final Map<String, String> systemProperties;
            private Instant startTime = Instant.now();
    
            DefaultSession(RepositorySystemSession session, RepositorySystem repositorySystem, Lookup lookup) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 17.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/general/ApiAdminGeneralAction.java

        //                                                                           Attribute
        //                                                                           =========
        @Resource
        protected DynamicProperties systemProperties;
    
        // ===================================================================================
        //
    
        // GET /api/admin/general
        @Execute
        public JsonResponse<ApiResult> get$index() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/profiles/activation/SystemPropertyProfileActivator.java

        private Properties properties;
    
        public void contextualize(Context context) throws ContextException {
            properties = (Properties) context.get("SystemProperties");
        }
    
        protected boolean canDetectActivation(Profile profile) {
            return profile.getActivation() != null && profile.getActivation().getProperty() != null;
        }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue May 09 23:46:02 GMT 2023
    - 3.3K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

            DynamicProperties systemProps = new DynamicProperties(file);
            SingletonLaContainerFactory.getContainer().register(systemProps, "systemProperties");
    
            assertEquals("@fess.codelibs.local", fessConfig.getLdapSecurityPrincipal(null));
            assertEquals("@fess.codelibs.local", fessConfig.getLdapSecurityPrincipal(""));
    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)
  8. analysis/analysis-api-fir/build.gradle.kts

        }
    
        inputs.files(generatorConfigurationFiles)
    
        workingDir = rootDir
        classpath = generatorClasspath
        mainClass.set("org.jetbrains.kotlin.analysis.api.fir.generator.MainKt")
        systemProperties["line.separator"] = "\n"
    }
    
    val compileKotlin by tasks
    
    compileKotlin.dependsOn(generateCode)
    
    tasks.withType<KotlinJvmCompile>().configureEach {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 05 16:42:25 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

        }
    
        protected Saml2Settings getSettings() {
            final Map<String, Object> params = new HashMap<>(defaultSettings);
            final DynamicProperties systemProperties = ComponentUtil.getSystemProperties();
            systemProperties.entrySet().stream().forEach(e -> {
                final String key = e.getKey().toString();
                if (!key.startsWith(SAML_PREFIX)) {
                    return;
                }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 15.2K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.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}.
         */
        MavenExecutionRequest 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: Wed Dec 20 13:03:57 GMT 2023
    - 17.7K bytes
    - Viewed (0)
Back to top