Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for withArgument (0.28 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            when: "publish a new integration version"
            resetExpectations()
            repository {
                'group:projectB:2.3'()
            }
            executer.withArgument('-PrefreshDynamicVersions')
    
            then:
            repositoryInteractions {
                'group:projectA' {
                    expectHeadVersionListing()
                }
                'group:projectB' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

    }
    """
        }
    
        def "transform can access artifact dependencies as a set of files when using ArtifactView"() {
            given:
            setupBuildWithSingleStep()
    
            when:
            executer.withArgument("--parallel")
            run ":app:resolveGreen"
    
            then:
            output.count('Transforming') == 5
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

        }
    
        @Override
        public GradleExecuter withArguments(String... args) {
            return withArguments(Arrays.asList(args));
        }
    
        @Override
        public GradleExecuter withArguments(List<String> args) {
            this.args.clear();
            this.args.addAll(args);
            return this;
        }
    
        @Override
        public GradleExecuter withArgument(String arg) {
            this.args.add(arg);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

            // Disable daemon, so that the second run executes with the file cache
            // and therefore make sure that we read the "missing" status from disk
            executer.withArgument('--no-daemon')
    
            repository {
                path 'xml -> core'
                path 'json -> core'
                path 'xml:1.1 -> core:1.1'
                path 'json:1.1 -> core:1.1'
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                        provider.get().increment()
                    }
                }
    
                provider.get().increment()
            """
            executer.beforeExecute {
                withArgument("--configuration-cache")
                withArgument("-Dorg.gradle.configuration-cache.internal.load-after-store=true")
            }
    
            when:
            run("count")
    
            then:
            output.count("service:") == 6
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

                        println "processing \${input.name}"
                        assert input.file
                    }
                }
            """
    
            when:
            executer.withArgument("--continue")
            fails(":a:resolve")
    
            then:
            transformed("c.jar")
            failure.assertHasFailures(1)
            failure.assertHasDescription("Execution failed for task ':b:producer'.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    === Example: Reconfigure tool arguments
    
    [source.multi-language-sample,groovy]
    .build.gradle
    ----
    include::{snippetsPath}/native-binaries/tool-chains/groovy/build.gradle[tag=withArguments]
    ----
    
    
    [[sec:crosscompiling_with_gcc]]
    === Cross-compiling with GCC
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
Back to top