Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 107 for SystemProperties (0.15 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/DaemonBuildActionExecuter.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.tooling.internal.provider;
    
    import org.gradle.internal.SystemProperties;
    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.classpath.DefaultClassPath;
    import org.gradle.internal.daemon.client.execution.ClientBuildRequestContext;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AutoTestedSamplesUtil.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures
    
    import groovy.ant.AntBuilder
    import org.gradle.internal.SystemProperties
    
    import java.util.regex.Pattern
    
    class AutoTestedSamplesUtil {
    
        private static final Pattern SAMPLE_START = Pattern.compile(/<pre class=['"]autoTested(.*?)['"].*?>/)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            final DynamicProperties systemProperties = ComponentUtil.getSystemProperties();
            switch (ua) {
            case IE:
                if (isLocalFile) {
                    url = url.replaceFirst("file:/+", systemProperties.getProperty("file.protocol.winlocal.ie", "file://"));
                } else {
                    url = url.replaceFirst("file:/+", systemProperties.getProperty("file.protocol.ie", "file://"));
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:58:45 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  4. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/redirector/DefaultStandardOutputRedirectorTest.groovy

     */
    package org.gradle.api.internal.tasks.testing.redirector
    
    import org.gradle.internal.SystemProperties
    import org.gradle.util.internal.RedirectStdOutAndErr
    import org.junit.Rule
    import spock.lang.Specification
    
    class DefaultStandardOutputRedirectorTest extends Specification {
        private static final String EOL = SystemProperties.instance.lineSeparator
    
        @Rule public final RedirectStdOutAndErr outputs = new RedirectStdOutAndErr()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/featurelifecycle/DefaultDeprecatedUsageProgressDetails.java

     */
    
    package org.gradle.internal.featurelifecycle;
    
    import com.google.common.annotations.VisibleForTesting;
    import org.gradle.api.problems.internal.DocLink;
    import org.gradle.internal.SystemProperties;
    import org.gradle.internal.deprecation.DeprecatedFeatureUsage;
    import org.gradle.internal.operations.trace.CustomOperationTraceSerialization;
    import org.gradle.problems.ProblemDiagnostics;
    
    import java.util.Collections;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 15:24:26 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. 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) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 31K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top