Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for RestResourcesExtension (0.33 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/RestResourcesExtension.java

    import javax.inject.Inject;
    
    /**
     * Custom extension to configure the {@link CopyRestApiTask}
     */
    public class RestResourcesExtension {
    
        private final RestResourcesSpec restApi;
        private final XpackRestResourcesSpec restTests;
    
        @Inject
        public RestResourcesExtension(ObjectFactory objects) {
            restApi = new RestResourcesSpec(objects);
            restTests = new XpackRestResourcesSpec(objects);
        }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 2.5K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/rest/compat/YamlRestCompatTestPlugin.java

            project.getPluginManager().apply(RestResourcesPlugin.class);
            project.getPluginManager().apply(InternalYamlRestTestPlugin.class);
    
            RestResourcesExtension extension = project.getExtensions().getByType(RestResourcesExtension.class);
    
            // create source set
            SourceSetContainer sourceSets = project.getExtensions().getByType(SourceSetContainer.class);
    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