Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 52 for getSystemProperties (0.23 sec)

  1. 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;
                }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. 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)
  3. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

        }
    
        public void test_getExcludedUrlList() {
            final AtomicInteger errorCount = new AtomicInteger(0);
            final DynamicProperties systemProperties = ComponentUtil.getSystemProperties();
            final FailureUrlCB cb = new FailureUrlCB();
            ComponentUtil.register(new FailureUrlBhv() {
                @Override
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  4. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultArtifactDescriptorReader.java

                    // properties in dependencies the user does not know. See MNG-7563 for details.
                    modelRequest.setSystemProperties(
                            toProperties(session.getUserProperties(), session.getSystemProperties()));
                    modelRequest.setUserProperties(new Properties());
                    modelRequest.setModelCache(modelCacheFactory.createCache(session));
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/execution/MavenExecutionRequest.java

         * from the runtime environment like {@link System#getProperties()} and environment variables.
         *
         * @return The system properties, never {@code null}.
         */
        Properties getSystemProperties();
    
        /**
         * Sets the user properties to use for interpolation and profile activation. The user properties have been
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

         * from the runtime environment like {@link System#getProperties()} and environment variables.
         *
         * @return The system properties, never {@code null}.
         */
        Properties getSystemProperties();
    
        /**
         * Sets the system properties to use for interpolation and profile activation. The system properties are collected
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/util/ComponentUtil.java

            }
        }
    
        public static CachedCipher getCipher(final String cipherName) {
            return getComponent(cipherName);
        }
    
        public static DynamicProperties getSystemProperties() {
            return getComponent(CRAWLER_PROPERTIES);
        }
    
        public static SystemHelper getSystemHelper() {
            if (systemHelper == null || HotdeployUtil.isHotdeploy()) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jun 17 13:35:51 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  8. .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)
  9. gradle/wrapper/gradle-wrapper.jar

    class PathAssembler { public void PathAssembler(java.io.File, java.io.File); } org/gradle/wrapper/SystemPropertiesHand.class package org.gradle.wrapper; public abstract synchronized class SystemPropertiesHand { public static java.util.HashMap getSystemProperties(java.io.File); } org/gradle/wrapper/WrapperConfiguration.class package org.gradle.wrapper; public final synchronized class WrapperConfiguration { public java.net.URI distribution; public String distributionBase; public String distributionPath;...
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Dec 24 09:00:26 UTC 2023
    - 42.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            final boolean isLocalFile = pos > 0 && pos < 12;
    
            final UserAgentType ua = ComponentUtil.getUserAgentHelper().getUserAgentType();
            final DynamicProperties systemProperties = ComponentUtil.getSystemProperties();
            switch (ua) {
            case IE:
                if (isLocalFile) {
                    url = url.replaceFirst("file:/+", systemProperties.getProperty("file.protocol.winlocal.ie", "file://"));
                } else {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 40.2K bytes
    - Viewed (0)
Back to top