Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 210 for SystemProperties (0.32 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom

              </excludes>
              <systemProperties>
                <property>
                  <name>JAVA_HOME</name>
                  <value>${JAVA_HOME}</value>
                </property>
                <property>
                  <name>M2_HOME</name>
                  <value>${M2_HOME}</value>
                </property>
              </systemProperties>
            </configuration>
          </plugin>
        </plugins>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.pom

              </excludes>
              <systemProperties>
                <property>
                  <name>JAVA_HOME</name>
                  <value>${JAVA_HOME}</value>
                </property>
                <property>
                  <name>M2_HOME</name>
                  <value>${M2_HOME}</value>
                </property>
              </systemProperties>
            </configuration>
          </plugin>
        </plugins>
      </build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Nov 09 12:45:14 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  3. subprojects/core-api/src/test/groovy/org/gradle/initialization/BuildLayoutParametersTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.initialization
    
    import org.gradle.StartParameter
    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.gradle.util.SetSystemProperties
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 11:15:22 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. 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)
  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. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top