Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for RestResourcesExtension (0.17 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/test/rest/RestResourcesPlugin.java

        private static final String EXTENSION_NAME = "restResources";
    
        @Override
        public void apply(Project project) {
            RestResourcesExtension extension = project.getExtensions().create(EXTENSION_NAME, RestResourcesExtension.class);
    
            SourceSetContainer sourceSets = project.getExtensions().getByType(SourceSetContainer.class);
    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