Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 128 for SystemProperties (0.43 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/internal/JavadocOptionFileWriterContext.java

                    .replaceAll(SystemProperties.getInstance().getLineSeparator(), "\\\\" + SystemProperties.getInstance().getLineSeparator())
                    .replace("\'", "\\'"));
            write("\'");
            return this;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. maven-core/src/test/resources-project-builder/plugin-config-properties/pom.xml

                      <version>2.4</version>
                      <configuration>
                        <systemProperties>
                          <property>
                            <name>my.property</name>
                            <value>my.value</value>
                          </property>
                        </systemProperties>
                      </configuration>
                    </plugin>
                </plugins>
            </pluginManagement>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Nov 09 12:45:14 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/SystemPropertiesTest.groovy

    import spock.lang.Specification
    
    class SystemPropertiesTest extends Specification {
        def "can be queried for standard system properties"() {
            expect:
            SystemProperties.instance.isStandardProperty("os.name")
            !SystemProperties.instance.isStandardProperty("foo.bar")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 943 bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/LinePrefixingStyledTextOutputTest.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.util.internal.TextUtil
    import spock.lang.Specification
    
    class LinePrefixingStyledTextOutputTest extends Specification {
    
        StringBuilder result
    
        StyledTextOutput styledTextOutput
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/util/internal/MavenUtil.java

     * limitations under the License.
     */
    
    package org.gradle.util.internal;
    
    import org.gradle.internal.SystemProperties;
    
    import javax.annotation.Nullable;
    import java.io.File;
    
    public class MavenUtil {
    
        public static File getUserMavenDir() {
            return new File(SystemProperties.getInstance().getUserHome(), ".m2");
        }
    
        @Nullable
        public static File getGlobalMavenDir() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 24 10:34:35 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/initialization/BuildLayoutParameters.java

     * 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.internal.installation.CurrentGradleInstallation;
    import org.gradle.internal.installation.GradleInstallation;
    
    import javax.annotation.Nullable;
    import java.io.File;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 26 20:57:11 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonJvmOptions.java

            systemProperties(currentProcessJvmOptions.getImmutableSystemProperties());
            handleDaemonImmutableProperties(currentProcessJvmOptions.getMutableSystemProperties());
        }
    
        private void handleDaemonImmutableProperties(Map<String, Object> systemProperties) {
            for (Map.Entry<String, ?> entry : systemProperties.entrySet()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/internal/classpath/InstrumentedTest.groovy

            System.setProperty("prop", "value")
    
            when:
            Instrumented.systemProperties("consumer").entrySet().forEach { e ->
            }
    
            then:
            1 * listener.systemPropertyQueried("prop", "value", "consumer")
    
            when:
            Instrumented.systemProperties("consumer").forEach { k, v ->
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/verbose/VerboseConsoleVerboseRenderingFunctionalTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.logging.console.taskgrouping.verbose
    
    import org.gradle.api.logging.configuration.ConsoleOutput
    import org.gradle.internal.SystemProperties
    import org.gradle.internal.logging.console.taskgrouping.AbstractConsoleVerboseRenderingFunctionalTest
    
    import static org.gradle.api.logging.configuration.ConsoleOutput.Verbose
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/testing/TestType.kt

    }
    
    
    fun Test.includeSpockAnnotation(fqcn: String) {
        systemProperties.compute("include.spock.annotation") { _, oldValue ->
            if (oldValue == null) fqcn else "$oldValue,$fqcn"
        }
    }
    
    
    fun Test.excludeSpockAnnotation(fqcn: String) {
        systemProperties.compute("exclude.spock.annotation") { _, oldValue ->
            if (oldValue == null) fqcn else "$oldValue,$fqcn"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top