Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 128 for SystemProperties (0.2 sec)

  1. subprojects/core/src/test/groovy/org/gradle/process/internal/streams/ExecOutputHandleRunnerTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.process.internal.streams
    
    import org.gradle.internal.SystemProperties
    import org.gradle.internal.io.LineBufferingOutputStream
    import org.gradle.internal.io.TextStream
    import spock.lang.Issue
    import spock.lang.Specification
    
    import java.util.concurrent.CountDownLatch
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 08 14:24:34 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  2. 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)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/LineFilterTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal.file.copy
    
    import org.gradle.internal.SystemProperties
    import org.junit.Test
    
    import static org.hamcrest.CoreMatchers.equalTo
    import static org.hamcrest.MatcherAssert.assertThat
    
    class LineFilterTest {
        @Test void testEmptyInput() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 19 19:02:02 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. subprojects/core/src/test/groovy/org/gradle/execution/DryRunBuildExecutionActionTest.groovy

    import org.gradle.internal.SystemProperties
    import org.gradle.internal.logging.text.TestStyledTextOutputFactory
    import org.gradle.util.Path
    import spock.lang.Specification
    
    import static org.gradle.util.internal.WrapUtil.toList
    
    class DryRunBuildExecutionActionTest extends Specification {
        private static final String EOL = SystemProperties.instance.lineSeparator
        def delegate = Mock(BuildWorkExecutor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 20:13:45 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  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