Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 116 for SystemProperties (0.33 sec)

  1. subprojects/core/src/test/groovy/org/gradle/initialization/LayoutCommandLineConverterTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.initialization
    
    import org.gradle.internal.SystemProperties
    import org.gradle.test.fixtures.file.TestNameTestDirectoryProvider
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.UnitTestPreconditions
    import org.junit.Rule
    import spock.lang.Issue
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 11:15:22 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/apache/maven/cli/CliRequest.java

        Path rootDirectory;
    
        Path topDirectory;
    
        boolean verbose;
    
        boolean quiet;
    
        boolean showErrors = true;
    
        Properties userProperties = new Properties();
    
        Properties systemProperties = new Properties();
    
        MavenExecutionRequest request;
    
        CliRequest(String[] args, ClassWorld classWorld) {
            this.args = args;
            this.classWorld = classWorld;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 10:32:14 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.JavaExec.xml

                </tr>
                <tr>
                    <td>jvmArgumentProviders</td>
                    <td><literal>[]</literal></td>
                </tr>
                <tr>
                    <td>systemProperties</td>
                    <td><literal>[:]</literal></td>
                </tr>
                <tr>
                    <td>bootstrapClasspath</td>
                    <td><literal>[]</literal></td>
                </tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. 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)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultIvyContextManager.java

    import org.apache.ivy.core.IvyContext;
    import org.apache.ivy.core.settings.IvySettings;
    import org.apache.ivy.util.Message;
    import org.gradle.api.Action;
    import org.gradle.api.Transformer;
    import org.gradle.internal.SystemProperties;
    import org.gradle.internal.Transformers;
    
    import java.util.LinkedList;
    import java.util.concurrent.locks.Lock;
    import java.util.concurrent.locks.ReentrantLock;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. 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)
  7. platforms/documentation/docs/src/docs/dsl/org.gradle.api.tasks.testing.Test.xml

                </tr>
                <tr>
                    <td>executable</td>
                    <td><command>java</command> command for the current JVM.</td>
                </tr>
                <tr>
                    <td>systemProperties</td>
                    <td><literal>[:]</literal></td>
                </tr>
                <tr>
                    <td>bootstrapClasspath</td>
                    <td><literal>[]</literal></td>
                </tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top