Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 210 for SystemProperties (0.2 sec)

  1. 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)
  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. src/main/java/org/codelibs/fess/helper/ViewHelper.java

            final DynamicProperties systemProperties = ComponentUtil.getSystemProperties();
            switch (ua) {
            case IE:
                if (isLocalFile) {
                    url = url.replaceFirst("file:/+", systemProperties.getProperty("file.protocol.winlocal.ie", "file://"));
                } else {
                    url = url.replaceFirst("file:/+", systemProperties.getProperty("file.protocol.ie", "file://"));
                }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:58:45 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

            }
            return goals;
        }
    
        @Override
        public Properties getSystemProperties() {
            if (systemProperties == null) {
                systemProperties = new Properties();
            }
    
            return systemProperties;
        }
    
        @Override
        public Properties getUserProperties() {
            if (userProperties == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 31K bytes
    - Viewed (0)
Back to top