Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getNaming (0.15 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/InternalPluginBuildPlugin.java

            project.getTasks().withType(TestingConventionsTasks.class).named("testingConventions").configure(t -> {
                t.getNaming().clear();
                t.getNaming()
                    .create("Tests", testingConventionRule -> testingConventionRule.baseClass("org.apache.lucene.util.LuceneTestCase"));
                t.getNaming().create("IT", testingConventionRule -> {
                    testingConventionRule.baseClass("org.elasticsearch.test.ESIntegTestCase");
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 5K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/TestingConventionsPrecommitPlugin.java

            testingConventions.configure(t -> {
                TestingConventionRule testsRule = t.getNaming().maybeCreate("Tests");
                testsRule.baseClass("org.apache.lucene.util.LuceneTestCase");
                TestingConventionRule itRule = t.getNaming().maybeCreate("IT");
                itRule.baseClass("org.elasticsearch.test.ESIntegTestCase");
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.4K bytes
    - Click Count (0)
Back to Top