Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 183 for SystemProperties (0.48 sec)

  1. platforms/jvm/jvm-services/src/integTest/groovy/org/gradle/internal/jvm/inspection/DefaultJvmMetadataDetectorIntegrationTest.groovy

    import org.gradle.api.internal.file.TestFiles
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    import org.gradle.integtests.fixtures.AvailableJavaHomes
    import org.gradle.internal.SystemProperties
    import org.gradle.internal.jvm.Jvm
    import org.gradle.jvm.toolchain.internal.InstallationLocation
    import org.gradle.process.internal.DefaultExecHandleBuilder
    import org.gradle.test.precondition.Requires
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 18:25:34 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AnyOrderOutputMatcher.groovy

    package org.gradle.integtests.fixtures.executer
    
    import org.junit.Assert
    import org.gradle.internal.SystemProperties
    
    /**
     * Checks that all lines contained in the expected output are present in the actual output, in any order.
     */
    class AnyOrderOutputMatcher extends 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
    - 1.9K bytes
    - Viewed (0)
  3. platforms/software/signing/src/testFixtures/groovy/org/gradle/test/fixtures/GpgCmdFixture.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.test.fixtures
    
    import org.gradle.internal.SystemProperties
    import org.gradle.test.fixtures.file.TestFile
    
    import java.nio.file.Files
    import java.nio.file.Path
    import java.nio.file.Paths
    import java.util.regex.Pattern
    
    class GpgCmdFixture {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-runtime/logging/src/testFixtures/groovy/org/gradle/internal/logging/text/TestStyledTextOutput.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.logging.text
    
    import org.gradle.internal.SystemProperties
    import org.gradle.internal.logging.text.StyledTextOutput.Style
    
    class TestStyledTextOutput extends AbstractStyledTextOutput {
        StringBuilder result = new StringBuilder()
    
        @Override
        String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/report/ClassPageRenderer.java

                    String message;
                    if (GUtil.isTrue(failure.getMessage()) && !failure.getStackTrace().contains(failure.getMessage())) {
                        message = failure.getMessage() + SystemProperties.getInstance().getLineSeparator() + SystemProperties.getInstance().getLineSeparator() + failure.getStackTrace();
                    } else {
                        message = failure.getStackTrace();
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/AbstractProfileActivatorTest.java

            activator = null;
        }
    
        protected ProfileActivationContext newContext(final Properties userProperties, final Properties systemProperties) {
            DefaultProfileActivationContext context = new DefaultProfileActivationContext();
            return context.setUserProperties(userProperties).setSystemProperties(systemProperties);
        }
    
        protected void assertActivation(boolean active, Profile profile, ProfileActivationContext context) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestEnvironmentIntegrationTest.groovy

                    }
                }
            """.stripIndent()
            buildFile << """
                test {
                    systemProperties 'java.system.class.loader':'org.gradle.MySystemClassLoader'
                }
            """.stripIndent()
    
            when:
            run 'test'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top