Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 191 - 200 of 845 for ressources (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. okcurl/build.gradle.kts

      tasks.register<Copy>("copyResourcesTemplates") {
        from("src/main/resources-templates")
        into(layout.buildDirectory.dir("generated/resources-templates"))
        expand("projectVersion" to "${project.version}")
        filteringCharset = Charsets.UTF_8.toString()
      }
    
    configure<JavaPluginExtension> {
      sourceSets.getByName("main").resources.srcDir(copyResourcesTemplates.get().outputs)
    }
    
    dependencies {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Feb 05 09:17:33 GMT 2026
    - 2.4K bytes
    - Click Count (0)
  2. .teamcity/src/main/kotlin/promotion/BasePromotionBuildType.kt

            }
    
            features {
                // https://www.jetbrains.com/help/teamcity/shared-resources.html#Viewing+Shared+Resources+Usage
                // https://blog.jetbrains.com/teamcity/2013/05/explaining-the-shared-resources-plugin/
                // we only allow 1 promotion job running at the same time to avoid website xml conflicts
                feature {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 30 04:44:29 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/rest/compat/YamlRestCompatTestPlugin.java

        private static final Path RELATIVE_REST_API_RESOURCES = Path.of("rest-api-spec/src/main/resources");
        private static final Path RELATIVE_REST_XPACK_RESOURCES = Path.of("x-pack/plugin/src/test/resources");
        private static final Path RELATIVE_REST_PROJECT_RESOURCES = Path.of("src/yamlRestTest/resources");
        public static final String BWC_MINOR_CONFIG_NAME = "bwcMinor";
    
        @Override
    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)
  4. docs/en/docs/resources/index.md

    # Resources { #resources }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Dec 10 12:28:40 GMT 2025
    - 83 bytes
    - Click Count (0)
  5. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

                        alias("generate-resources", RESOURCES),
                        alias("process-resources", AFTER + RESOURCES),
                        alias("process-classes", AFTER + COMPILE),
                        alias("generate-test-sources", TEST_SOURCES),
                        alias("process-test-sources", AFTER + TEST_SOURCES),
                        alias("generate-test-resources", TEST_RESOURCES),
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Mon Sep 29 14:45:25 GMT 2025
    - 20.1K bytes
    - Click Count (0)
  6. android-test/src/main/res/values/strings.xml

    <resources>
      <string name="app_name">android-test</string>
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jul 16 22:15:20 GMT 2019
    - 73 bytes
    - Click Count (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/ResponseBody.kt

     * imposes both obligations and limits on the client application.
     *
     * ### The response body must be closed.
     *
     * Each response body is backed by a limited resource like a socket (live network responses) or
     * an open file (for cached responses). Failing to close the response body will leak resources and
     * may ultimately cause the application to slow down or crash.
     *
     * Both this class and [Response] implement [Closeable]. Closing a response simply
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue May 27 14:51:25 GMT 2025
    - 11.6K bytes
    - Click Count (0)
  8. android-test-app/src/main/res/values/strings.xml

    <resources>
      <string name="app_name">android-test</string>
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat Dec 23 14:46:51 GMT 2023
    - 73 bytes
    - Click Count (0)
  9. regression-test/src/main/res/values/strings.xml

    <resources>
      <string name="app_name">regression-test</string>
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Fri Nov 13 07:09:56 GMT 2020
    - 76 bytes
    - Click Count (0)
  10. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/InternalYamlRestTestPlugin.java

            // setup the copy for the rest resources
            project.getTasks().withType(CopyRestApiTask.class).configureEach(copyRestApiTask -> {
                copyRestApiTask.setSourceResourceDir(
                    yamlTestSourceSet.getResources()
                        .getSrcDirs()
                        .stream()
                        .filter(f -> f.isDirectory() && f.getName().equals("resources"))
                        .findFirst()
    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)
Back to Top