Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for getTaskName (0.37 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractTaskRelocationIntegrationTest.groovy

            def movedResults = extractResults()
            then:
            executedAndNotSkipped taskName
            assertResultsEqual originalResults, movedResults
        }
    
        abstract protected String getTaskName()
    
        abstract protected void setupProjectInOriginalLocation()
    
        abstract protected void moveFilesAround()
    
        @SuppressWarnings("GrMethodMayBeStatic")
        protected void removeResults() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/AbstractCodeQualityPlugin.java

            sourceSets.all(new Action<SourceSet>() {
                @Override
                public void execute(final SourceSet sourceSet) {
                    project.getTasks().register(sourceSet.getTaskName(getTaskBaseName(), null), getCastedTaskType(), new Action<Task>() {
                        @Override
                        public void execute(Task task) {
                            configureForSourceSet(sourceSet, (T) task);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractProjectRelocationIntegrationTest.groovy

            def relocatedResults = extractResultsFrom(relocatedDir)
            then: "the two results should be the same"
            assertResultsEqual originalResults, relocatedResults
        }
    
        abstract protected String getTaskName()
    
        abstract protected void setupProjectIn(TestFile projectDir)
    
        abstract protected def extractResultsFrom(TestFile projectDir)
    
        @SuppressWarnings("GrMethodMayBeStatic")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestPlugin.java

                // TODO: Replace with native test task
                final TaskProvider<RunTestExecutable> testTask = tasks.register(binary.getNames().getTaskName("run"), RunTestExecutable.class, task -> {
                    task.setGroup(LifecycleBasePlugin.VERIFICATION_GROUP);
                    task.setDescription("Executes C++ unit tests.");
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

            projectDirectory.dir(it.single().asFile.absolutePath).dir("checkstyle")
        }
    }
    
    plugins.withType<GroovyBasePlugin> {
        the<SourceSetContainer>().all {
            tasks.register<Checkstyle>(getTaskName("checkstyle", "groovy")) {
                config = configFile("checkstyle-groovy.xml")
                source(allGroovy)
                classpath = compileClasspath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/kernels/xla_ops.cc

          client, allocator, device_ordinal,
          /*allocate_xla_tensors=*/platform_info.is_on_xla_device(),
          /*use_multiple_streams=*/platform_info.UseMultipleStreams());
      return launch_context;
    }
    
    Status GetTaskName(const std::string_view device_name, std::string* task_name) {
      string ignored;
      if (!DeviceNameUtils::SplitDeviceName(device_name, task_name, &ignored)) {
        return errors::InvalidArgument("Unable to parse device name: ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  7. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.tasks.SourceSet.getSourcesJarTaskName()> does not have raw return type assignable to org.gradle.api.provider.Provider in (SourceSet.java:0)
    Method <org.gradle.api.tasks.SourceSet.getTaskName(java.lang.String, java.lang.String)> does not have raw return type assignable to org.gradle.api.provider.Provider in (SourceSet.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top