Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 222 for taskName (0.16 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/cpp-exe/groovy/build.gradle

                    }
                }
            }
        }
        tasks { t ->
            $.components.main.binaries.each { binary ->
                def stripTask = binary.tasks.taskName("strip")
                t.create(stripTask) {
                    dependsOn binary.tasks.link
                    doFirst {
                        if (binary.toolChain in Gcc) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 931 bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/PmdPluginTest.groovy

            1.1                 | TargetJdk.VERSION_1_4
            1.2                 | TargetJdk.VERSION_1_4
        }
    
        private void configuresPmdTask(String taskName, SourceSet sourceSet) {
            def task = project.tasks.findByName(taskName)
            assert task instanceof Pmd
            task.with {
                assert description == "Run PMD analysis for ${sourceSet.name} classes"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 14:47:31 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/plugins/NativeComponentModelPlugin.java

                        if (dependentSourceSet.getPrefixHeaderFile() != null) {
                            String taskName = "generate" + StringUtils.capitalize(nativeComponentSpec.getName()) + StringUtils.capitalize(dependentSourceSet.getName()) + "PrefixHeaderFile";
                            tasks.create(taskName, PrefixHeaderFileGenerateTask.class, new Action<PrefixHeaderFileGenerateTask>() {
                                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskCreationIntegrationTest.groovy

        def "can create task with invalid model space name"() {
            given:
            def taskName = "-"
    
            when:
            buildFile << """
                tasks.create('$taskName').doFirst {}
            """
    
            run taskName
    
            then:
            executed ":$taskName"
    
            when:
            ModelPath.validateName(taskName)
    
            then:
            thrown(ModelPath.InvalidNameException)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 18 22:50:47 UTC 2020
    - 16.9K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/internal/project/ant/AntLoggingAdapter.java

        @Override
        public void messageLogged(BuildEvent event) {
            final StringBuffer message = new StringBuffer();
            if (event.getTask() != null) {
                String taskName = event.getTask().getTaskName();
                message.append("[ant:").append(taskName).append("] ");
            }
            final String messageText = event.getMessage();
            message.append(messageText);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 4.2K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt

            }
    
            features {
                publishBuildStatusToGithub(model)
            }
    
            val performanceResultsDir = "perf-results"
            val performanceProjectName = "performance"
    
            val taskName = if (performanceTestSpec.type == PerformanceTestType.flakinessDetection)
                "performanceTestFlakinessReport"
            else
                "performanceTestReport"
    
            artifactRules = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:42 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoPluginExtension.java

            final String taskName = task.getName();
            LOGGER.debug("Applying Jacoco to " + taskName);
            final JacocoTaskExtension extension = task.getExtensions().create(TASK_EXTENSION_NAME, JacocoTaskExtension.class, objects, agent, task);
            extension.setDestinationFile(layout.getBuildDirectory().file("jacoco/" + taskName + ".exec").map(RegularFile::getAsFile));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts

        val testType = TestType.CROSSVERSION
        val defaultExecuter = "embedded"
        val prefix = testType.prefix
        testType.executers.forEach { executer ->
            val taskName = "$executer${prefix.capitalize()}Test"
            val testTask = createTestTask(taskName, executer, sourceSet, testType) {
                this.setSystemPropertiesOfTestJVM("latest")
                this.systemProperties["org.gradle.integtest.crossVersion"] = "true"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/operations/logging/BuildOperationLoggerFactory.java

     * limitations under the License.
     */
    
    package org.gradle.internal.operations.logging;
    
    import java.io.File;
    
    public interface BuildOperationLoggerFactory {
        BuildOperationLogger newOperationLogger(String taskName, File outputDir);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 815 bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cunit/plugins/CUnitPlugin.java

                for (final CUnitTestSuiteSpec suite : testSuites.withType(CUnitTestSuiteSpec.class).values()) {
    
                    String taskName = suite.getName() + "CUnitLauncher";
                    GenerateCUnitLauncher skeletonTask = tasks.create(taskName, GenerateCUnitLauncher.class);
    
                    CSourceSet launcherSources = findLauncherSources(suite);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top