Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for CopyRestApiTask (0.08 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/test/rest/RestResourcesPlugin.java

    /**
     * <p>
     * Gradle plugin to help configure {@link CopyRestApiTask}'s and {@link CopyRestTestsTask} that copies the artifacts needed for the Rest API
     * spec and YAML based rest tests.
     * </p>
     * <strong>Rest API specification:</strong> <br>
     * When the {@link RestResourcesPlugin} has been applied the {@link CopyRestApiTask} will automatically copy the core Rest API specification
    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)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/InternalYamlRestTestPlugin.java

            // setup the dependencies
            setupTestDependenciesDefaults(project, yamlTestSourceSet);
    
            // setup the copy for the rest resources
            project.getTasks().withType(CopyRestApiTask.class).configureEach(copyRestApiTask -> {
                copyRestApiTask.setSourceResourceDir(
                    yamlTestSourceSet.getResources()
                        .getSrcDirs()
                        .stream()
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 27 16:04:42 GMT 2021
    - 2.8K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/rest/compat/YamlRestCompatTestPlugin.java

            project.getDependencies().add(bwcMinorConfig.getName(), bwcMinor);
    
            Provider<CopyRestApiTask> copyCompatYamlSpecTask = project.getTasks()
                .register("copyRestCompatApiTask", CopyRestApiTask.class, task -> {
                    task.dependsOn(bwcMinorConfig);
                    task.setConfig(bwcMinorConfig);
                    task.setAdditionalConfig(bwcMinorConfig);
    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