Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 25 for restResources (0.07 seconds)

  1. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/test/rest/RestResourcesPluginFuncTest.groovy

            file("/build/restResources/yamlSpecs/rest-api-spec/api/" + apiCore1).exists()
            file("/build/restResources/yamlSpecs/rest-api-spec/api/" + apiCore2).exists()
            file("/build/restResources/yamlSpecs/rest-api-spec/api/" + apiXpack).exists()
            file("/build/restResources/yamlTests/rest-api-spec/test/" + coreTest).exists()
            file("/build/restResources/yamlTests/rest-api-spec/test/" + xpackTest).exists()
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jul 20 21:05:16 GMT 2021
    - 7K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/RestResourcesPlugin.java

     * configured with `includeCore` or `includeXpack` through the `restResources.restTests` extension.
     * <i>For example:</i>
     * <pre>
     * restResources {
     *  restApi {
     *      includeXpack 'graph'
     *   }
     *   restTests {
     *     includeXpack 'graph'
     *   }
     * }
     * </pre>
     * Will copy any of the the x-pack tests that start with graph, and will copy the X-pack graph specification, as well as the full core
    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)
  3. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/test/rest/InternalYamlRestTestPluginFuncTest.groovy

            file("/build/restResources/yamlSpecs/rest-api-spec/api/" + api).exists()
            file("/build/resources/yamlRestTest/rest-api-spec/test/10_basic.yml").exists()
            file("/build/classes/java/yamlRestTest/MockIT.class").exists()
    
            // check that our copied specs and tests are on the yamlRestTest classpath
            result.output.contains("./build/restResources/yamlSpecs")
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 03 10:22:28 GMT 2021
    - 3.1K bytes
    - Click Count (0)
  4. build-tools-internal/build.gradle

        }
        repositories {
          id = 'elasticsearch.repositories'
          implementationClass = 'org.elasticsearch.gradle.internal.RepositoriesSetupPlugin'
        }
        restResources {
          id = 'elasticsearch.rest-resources'
          implementationClass = 'org.elasticsearch.gradle.internal.test.rest.RestResourcesPlugin'
        }
        restTest {
          id = 'elasticsearch.rest-test'
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 13 18:10:22 GMT 2021
    - 11.3K bytes
    - Click Count (0)
  5. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/test/rest/YamlRestCompatTestPluginFuncTest.groovy

        def compatibleVersion = Version.fromString(VersionProperties.getVersions().get("elasticsearch")).getMajor() - 1
        def specIntermediateDir = "restResources/v${compatibleVersion}/yamlSpecs"
        def testIntermediateDir = "restResources/v${compatibleVersion}/yamlTests"
        def transformTask  = ":yamlRestTestV${compatibleVersion}CompatTransform"
        def YAML_FACTORY = new YAMLFactory()
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 30 16:30:48 GMT 2021
    - 16.4K bytes
    - Click Count (0)
  6. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/rest/compat/YamlRestCompatTestPlugin.java

        public void apply(Project project) {
            final int compatibleVersion = Version.fromString(VersionProperties.getVersions().get("elasticsearch")).getMajor() - 1;
            final Path compatRestResourcesDir = Path.of("restResources").resolve("v" + compatibleVersion);
            final Path compatSpecsDir = compatRestResourcesDir.resolve("yamlSpecs");
            final Path compatTestsDir = compatRestResourcesDir.resolve("yamlTests");
    
    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)
  7. TESTING.asciidoc

    Gradle incremental builds, it is recommended to explicitly declare which
    parts of the API the tests depend upon.
    
    For example:
    ---------------------------------------------------------------------------
    restResources {
      restApi {
        includeCore '_common', 'indices', 'index', 'cluster', 'nodes', 'get', 'ingest'
      }
    }
    ---------------------------------------------------------------------------
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Jun 07 13:55:20 GMT 2021
    - 32.5K bytes
    - Click Count (0)
  8. compat/maven-model-builder/src/test/resources/poms/validation/missing-resource-directory-pom.xml

      <groupId>foo</groupId>
      <version>99.44</version>
      <packaging>bleh</packaging>
      <build>
        <resources>
          <resource>
    
          </resource>
        </resources>
        <testResources>
          <testResource>
    
          </testResource>
        </testResources>
      </build>
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 1.1K bytes
    - Click Count (0)
  9. okhttp/src/jvmTest/kotlin/okhttp3/internal/publicsuffix/PublicSuffixListGenerator.kt

      val fileSystem: FileSystem = FileSystem.SYSTEM,
      val client: OkHttpClient = OkHttpClient(),
    ) {
      private val testResources = projectRoot / "okhttp/src/jvmTest/resources"
      private val publicSuffixListDotDat = testResources / "okhttp3/internal/publicsuffix/public_suffix_list.dat"
      private val outputFile = testResources / PUBLIC_SUFFIX_RESOURCE
    
      val request = Request("https://publicsuffix.org/list/public_suffix_list.dat".toHttpUrl())
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Aug 06 05:33:11 GMT 2025
    - 6.1K bytes
    - Click Count (0)
  10. compat/maven-model-builder/src/main/resources/org/apache/maven/model/pom-4.2.0.xml

          </resource>
        </resources>
        <testResources>
          <testResource>
            <directory>${project.basedir}/src/test/resources</directory>
          </testResource>
          <testResource>
            <directory>${project.basedir}/src/test/resources-filtered</directory>
            <filtering>true</filtering>
          </testResource>
        </testResources>
      </build>
    
      <reporting>
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Aug 07 14:31:13 GMT 2025
    - 2.6K bytes
    - Click Count (0)
Back to Top