Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 66 for doHash (0.52 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/CheckstylePrecommitPlugin.java

            }
    
            // Explicitly using an Action interface as java lambdas
            // are not supported by Gradle up-to-date checks
            copyCheckstyleConf.configure(t -> t.doLast(new Action<Task>() {
                @Override
                public void execute(Task task) {
                    checkstyleDir.mkdirs();
                    try (InputStream stream = checkstyleConfUrl.openStream()) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jun 17 08:59:22 GMT 2021
    - 5.5K bytes
    - Click Count (0)
  2. kotlin-js-store/yarn.lock

      integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==
      dependencies:
        p-locate "^5.0.0"
    
    lodash@^4.17.15, lodash@^4.17.21:
      version "4.17.21"
      resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
      integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat Jul 22 12:28:51 GMT 2023
    - 87.4K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/groovy/elasticsearch.build-scan.gradle

        }
      }
    }
    
    subprojects {
      project.getPlugins().withType(TestRerunPlugin) {
        tasks.withType(Test).configureEach(new Action<Test>() {
          @Override
          void execute(Test test) {
            test.doLast(new Action<Test>() {
              @Override
              void execute(Test t) {
                if(t.rerun.didRerun.get() == true) {
                  buildScan.tag 'unexpected-test-jvm-exit'
                }
              }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jul 21 20:40:34 GMT 2021
    - 4.6K bytes
    - Click Count (0)
  4. build-logic-commons/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

                if (moduleBaseDir.exists()) {
                    // Make sure artifacts do not pile up locally
                    moduleBaseDir.deleteRecursively()
                }
            }
    
            doLast {
                localRepository.get().file("org/gradle/${baseName.get()}/maven-metadata.xml").asFile.apply {
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Oct 30 16:56:31 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/llm/RelevanceEvaluationResultTest.java

            List<String> docIds = Arrays.asList("doc-with-dash", "doc_with_underscore", "doc.with.dot");
            List<Integer> indexes = Arrays.asList(1, 2, 3);
            RelevanceEvaluationResult result = RelevanceEvaluationResult.withRelevantDocs(docIds, indexes);
    
            assertTrue(result.isHasRelevantResults());
            assertEquals("doc-with-dash", result.getRelevantDocIds().get(0));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 01 08:11:18 GMT 2026
    - 7.7K bytes
    - Click Count (0)
  6. docs/de/llm-prompt.md

    Example:
    
    Source (English):
    
    ```
    # FastAPI in Containers - Docker { #fastapi-in-containers-docker }
    ```
    
    Translate with (German) – notice the dash:
    
    ```
    # FastAPI in Containern – Docker { #fastapi-in-containers-docker }
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Dec 29 18:54:20 GMT 2025
    - 9.8K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/doc/RestTestsFromSnippetsTask.groovy

            testRoot = objectFactory.directoryProperty()
            TestBuilder builder = new TestBuilder()
            doFirst { outputRoot().delete() }
            perSnippet builder.&handleSnippet
            doLast builder.&checkUnconverted
            doLast builder.&finishLastTest
        }
    
        /**
         * Root directory containing all the files generated by this task. It is
         * contained within testRoot.
         */
        File outputRoot() {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 19.5K bytes
    - Click Count (0)
  8. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalDistributionBwcSetupPlugin.java

                c.args(projectPath.replace('/', ':') + ":" + assembleTaskName);
                if (project.getGradle().getStartParameter().isBuildCacheEnabled()) {
                    c.args("--build-cache");
                }
                c.doLast(new Action<Task>() {
                    @Override
                    public void execute(Task task) {
                        if (expectedOutputFile.exists() == false) {
                            throw new InvalidUserDataException(
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Aug 18 09:11:28 GMT 2021
    - 14.5K bytes
    - Click Count (0)
  9. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/testfixtures/TestFixturesPlugin.java

                    t.mustRunAfter(preProcessFixture);
                });
                tasks.named("composePull").configure(t -> t.mustRunAfter(preProcessFixture));
                tasks.named("composeDown").configure(t -> t.doLast(t2 -> getFileSystemOperations().delete(d -> d.delete(testfixturesDir))));
            } else {
                project.afterEvaluate(spec -> {
                    if (extension.fixtures.isEmpty()) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 29 15:07:50 GMT 2021
    - 10.7K bytes
    - Click Count (0)
  10. cmd/object-api-utils_test.go

    		{"ends-with-a-dot.", false},
    		{"ends-with-a-dash-", false},
    		{"-starts-with-a-dash", false},
    		{"THIS-BEGINS-WITH-UPPERCASe", false},
    		{"tHIS-ENDS-WITH-UPPERCASE", false},
    		{"ThisBeginsAndEndsWithUpperCasE", false},
    		{"una ñina", false},
    		{"dash-.may-not-appear-next-to-dot", false},
    		{"dash.-may-not-appear-next-to-dot", false},
    		{"dash-.-may-not-appear-next-to-dot", false},
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 24.1K bytes
    - Click Count (0)
Back to Top