Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for SystemProperties (0.3 sec)

  1. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/InvokerRequest.java

         * These include both Java system properties and Maven-specific system properties.
         *
         * @return an unmodifiable map of system properties
         */
        @Nonnull
        Map<String, String> systemProperties();
    
        /**
         * Returns the top-level directory of the Maven invocation.
         * This is typically the directory containing the POM file being executed.
         *
         * @return the top-level directory path
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

         *
         * @return the default redirect URL
         */
        protected String buildDefaultRedirectUrl() {
            final DynamicProperties systemProperties = ComponentUtil.getSystemProperties();
            String baseUrl = systemProperties.getProperty(OIC_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
    - 16.5K bytes
    - Viewed (0)
  3. 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.
         *
         * @param systemProperties The system properties, may be {@code null}.
         * @return This request, never {@code null}.
         */
        ModelBuildingRequest setSystemProperties(Properties systemProperties);
    
        /**
         * Gets the user properties to use for interpolation and profile activation. The user properties have been
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  4. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/LookupContext.java

                        invokerRequest.rootDirectory().get().toString());
            }
            this.protoSession = ProtoSession.newBuilder()
                    .withSystemProperties(invokerRequest.systemProperties())
                    .withUserProperties(user)
                    .withTopDirectory(invokerRequest.topDirectory())
                    .withRootDirectory(invokerRequest.rootDirectory().orElse(null))
                    .build();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jun 11 13:14:09 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  5. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/TestUtils.java

            when(request.topDirectory()).thenReturn(workingDirectory);
            when(request.rootDirectory()).thenReturn(Optional.empty());
            when(request.userProperties()).thenReturn(Map.of());
            when(request.systemProperties()).thenReturn(Map.of());
            when(request.options()).thenReturn(Optional.ofNullable(options));
    
            // Mock parserRequest and logger
            ParserRequest parserRequest = mock(ParserRequest.class);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  6. impl/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
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Dec 12 11:02:17 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  7. impl/maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

            request.requestType(ModelBuilderRequest.RequestType.BUILD_CONSUMER);
            request.session(iSession);
            request.source(src);
            request.locationTracking(false);
            request.systemProperties(session.getSystemProperties());
            request.userProperties(session.getUserProperties());
            request.lifecycleBindingsInjector(lifecycleBindingsInjector::injectLifecycleBindings);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Nov 27 07:40:26 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  8. gradle/wrapper/gradle-wrapper.jar

    cator extends java.net.Authenticator { public final java.util.Map systemProperties; public void Download$ProxyAuthenticator(java.util.Map); public final java.net.PasswordAuthenticati getPasswordAuthentic(); } org/gradle/wrapper/Download.class package org.gradle.wrapper; public final class Download { public final Logger logger; public final Download$DefaultDownloadProgr progressListener; public final java.util.Map systemProperties; public final int networkTimeout; public static java.util.HashMap ...
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Thu Oct 30 01:56:29 UTC 2025
    - 44.6K bytes
    - Viewed (1)
  9. impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

                String pomPath, Properties systemProperties, Properties userProperties, String... profileIds)
                throws Exception {
            return buildPom(pomPath, false, systemProperties, userProperties, profileIds);
        }
    
        private PomTestWrapper buildPom(
                String pomPath,
                boolean lenientValidation,
                Properties systemProperties,
                Properties userProperties,
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 94.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/util/ComponentUtil.java

        private static final String VIEW_HELPER = "viewHelper";
    
        private static final String SYSTEM_HELPER = "systemHelper";
    
        private static final String CRAWLER_PROPERTIES = "systemProperties";
    
        private static final String JOB_EXECUTOR_SUFFIX = "JobExecutor";
    
        private static final String KEY_MATCH_HELPER = "keyMatchHelper";
    
        private static final String INDEXING_HELPER = "indexingHelper";
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 28.9K bytes
    - Viewed (0)
Back to top