Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for setCoreConfig (0.08 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/CopyRestTestsTask.java

                    if (substitutions != null) {
                        c.filter(Map.of("tokens", substitutions), ReplaceTokens.class);
                    }
                });
            }
        }
    
        public void setCoreConfig(FileCollection coreConfig) {
            this.coreConfig = coreConfig;
        }
    
        public void setXpackConfig(FileCollection xpackConfig) {
            this.xpackConfig = xpackConfig;
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jul 20 21:05:16 GMT 2021
    - 7.7K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/RestResourcesPlugin.java

                .register(COPY_YAML_TESTS_TASK, CopyRestTestsTask.class, task -> {
                    task.dependsOn(testConfig, xpackTestConfig);
                    task.setCoreConfig(testConfig);
                    task.setXpackConfig(xpackTestConfig);
                    // If this is the rest spec project, don't copy the tests again
                    if (project.getPath().equals(":rest-api-spec") == false) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jun 23 09:36:58 GMT 2021
    - 6.4K bytes
    - Click Count (0)
Back to Top