Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for mustRunAfter (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/testfixtures/TestFixturesPlugin.java

                    if (BuildParams.isCi()) {
                        t.usesService(dockerComposeThrottle);
                    }
                    t.mustRunAfter(preProcessFixture);
                });
                tasks.named("composePull").configure(t -> t.mustRunAfter(preProcessFixture));
                tasks.named("composeDown").configure(t -> t.doLast(t2 -> getFileSystemOperations().delete(d -> d.delete(testfixturesDir))));
            } else {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 29 15:07:50 GMT 2021
    - 10.7K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/rest/compat/YamlRestCompatTestPlugin.java

                        .minus(project.files(originalYamlSpecsDir))
                        .minus(project.files(originalYamlTestsDir))
                );
                // run compatibility tests after "normal" tests
                testTask.mustRunAfter(project.getTasks().named(InternalYamlRestTestPlugin.SOURCE_SET_NAME));
                testTask.onlyIf(t -> isEnabled(project));
            });
    
            setupTestDependenciesDefaults(project, yamlCompatTestSourceSet);
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 03 16:26:11 GMT 2021
    - 11.7K bytes
    - Click Count (0)
Back to Top