Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 402 for withArgument (0.22 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/scaninfo/DaemonScanInfoIntegrationSpec.groovy

            """
    
            when:
            openJpmsModulesForConfigurationCache()
            if (continuous) {
                executer.withArgument('waitForExpiration')
                executer.withArgument('--continuous')
            } else {
                executer.withArgument('waitForExpiration')
            }
            executer.run()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/TestProxyServer.groovy

            if (userName) {
                executer.withArgument("-D${proxyScheme}.proxyUser=${userName}")
            }
            if (password) {
                executer.withArgument("-D${proxyScheme}.proxyPassword=${password}")
            }
        }
    
        void configureProxyHost(GradleExecuter executer, String proxyScheme) {
            assert port > 0
            executer.withArgument("-D${proxyScheme}.proxyHost=localhost")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/jvm/jvm-services/src/integTest/groovy/org/gradle/jvm/toolchain/JavaInstallationRegistryIntegrationTest.groovy

                .withEnvironmentVars([JDK1: new File("/unknown/env").absolutePath, JDK2: firstJavaHome])
                .withArgument("-Porg.gradle.java.installations.paths=${new File("/unknown/path").absolutePath}," + secondJavaHome)
                .withArgument("-Porg.gradle.java.installations.fromEnv=JDK1,JDK2")
                .withArgument("--info")
                .withTasks("show")
                .run()
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:29:03 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/maven/MavenPublishGcsErrorsIntegrationTest.groovy

        @Rule
        public final GcsServer server = new GcsServer(temporaryFolder)
    
        def setup() {
            executer.withArgument('-i')
            executer.withArgument("-D${GCS_ENDPOINT_PROPERTY}=${server.uri}")
            executer.withArgument("-D${GCS_SERVICE_PATH_PROPERTY}=/")
            executer.withArgument("-D${GCS_DISABLE_AUTH_PROPERTY}=true")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/FileSystemWatchingFixture.groovy

            executer.withArgument(FileSystemWatchingHelper.dropVfsArgument)
        }
    
        AbstractIntegrationSpec withWatchFs() {
            executer.withArgument(FileSystemWatchingHelper.enableFsWatchingArgument)
            this as AbstractIntegrationSpec
        }
    
        AbstractIntegrationSpec withoutWatchFs() {
            executer.withArgument(FileSystemWatchingHelper.disableFsWatchingArgument)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/CommandLineIntegrationSpec.groovy

            cleanup:
            jdwpClient.close()
        }
    
        private startWithDebug(int port, String host) {
            executer.withArgument("-Dorg.gradle.debug=true")
                .withArgument("-Dorg.gradle.debug.port=" + port)
                .withArgument("-Dorg.gradle.debug.host=" + host)
                .withTasks("help")
                .start()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 05:05:14 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/fixtures/XcodebuildExecutor.java

        // Returns raw output of `xcodebuild`
        public ExecOutput execWithFailure(XcodeAction action) {
            withArgument(action.toString());
            return findXcodeBuild().execWithFailure(args, buildEnvironment(testDirectory));
        }
    
        public ExecutionFailure fails(XcodeAction action) {
            withArgument(action.toString());
            ExecOutput result = findXcodeBuild().execWithFailure(args, buildEnvironment(testDirectory));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/ivy/IvyPublishGcsIntegrationTest.groovy

        @Rule
        public GcsServer server = new GcsServer(temporaryFolder)
    
        def setup() {
            executer.withArgument("-D${GCS_ENDPOINT_PROPERTY}=${server.uri}")
            executer.withArgument("-D${GCS_SERVICE_PATH_PROPERTY}=/")
            executer.withArgument("-D${GCS_DISABLE_AUTH_PROPERTY}=true")
        }
    
        def "can publish to a Gcs Ivy repository"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/RecoverFromBrokenResolutionIntegrationTest.groovy

            failure.assertThatCause(CoreMatchers.containsString("Received status code 500 from server: broken"))
    
    
            when:
            server.resetExpectations()
            then:
            executer.withArgument("--offline")
            run 'retrieve'
            and:
            file('libs/projectA-1.0-SNAPSHOT.jar').assertIsCopyOf(module.artifact.file)
        }
    
        @ToBeFixedForConfigurationCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  10. platforms/software/resources-gcs/src/integTest/groovy/org/gradle/integtests/resource/gcs/AbstractGcsDependencyResolutionTest.groovy

        @Rule
        public final GcsServer server = new GcsServer(temporaryFolder)
    
        def setup() {
            executer.withArgument('-i')
            executer.withArgument("-D${GCS_ENDPOINT_PROPERTY}=${server.uri}")
            executer.withArgument("-D${GCS_SERVICE_PATH_PROPERTY}=/")
            executer.withArgument("-D${GCS_DISABLE_AUTH_PROPERTY}=true")
        }
    
        String getBucket() {
            return 'testGcsbucket'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top