Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 227 for Archives (0.2 seconds)

  1. README.md

    #### PDFs and Images
    - PDF documents (text and metadata extraction)
    - Images (JPEG, PNG, GIF, TIFF, BMP)
    - Image metadata (EXIF, IPTC, XMP)
    
    #### Archives and Compressed Files
    - ZIP, TAR, GZ archives
    - LHA compression format
    - Nested archive extraction
    
    #### Web and Markup
    - HTML, XHTML with XPath support
    - XML documents
    - JSON and structured data
    
    #### Media Files
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Sun Aug 31 05:32:52 GMT 2025
    - 15.3K bytes
    - Click Count (0)
  2. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/InternalDistributionDownloadPluginFuncTest.groovy

        private void localDistroSetup() {
            settingsFile << """
            include ":distribution:archives:${testArchiveProjectName}"
            """
            def bwcSubProjectFolder = testProjectDir.newFolder("distribution", "archives", testArchiveProjectName)
            new File(bwcSubProjectFolder, 'current-marker.txt') << "current"
            new File(bwcSubProjectFolder, 'build.gradle') << """
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 6.7K bytes
    - Click Count (0)
  3. .github/workflows/codeql-analysis.yml

            DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
            # Potential stop-gap solution for ReadTimeout issues with the Gradle Build Cache
            # https://gradle.slack.com/archives/CHDLT99C6/p1636477584059200
            GRADLE_OPTS: -Dhttp.keepAlive=false
    
        - name: Compile with Gradle without publishing a Build Scan
          if: ${{ matrix.language == 'java' && github.repository_owner != 'gradle' }}
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Dec 11 22:12:03 GMT 2025
    - 4K bytes
    - Click Count (0)
  4. src/main/java/jcifs/smb1/util/mime.map

    application/hep                hep              # Hummingbird Host Explorer Profiles
    application/lotus-123          wks              # Lotus 123
    application/mac-binhex40       hqx              # Macintosh binhexed archives
    application/mspowerpoint       ppt              # Microsoft Powerpoint
    application/msword             doc              # Microsoft Word
    application/octet-stream       bin exe ani      # Binary File
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 5.9K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalDistributionDownloadPlugin.java

                projectPath += ":docker:";
                projectPath += distributionProjectName(distribution);
            } else {
                projectPath += distribution.getType() == ElasticsearchDistributionTypes.ARCHIVE ? ":archives:" : ":packages:";
                projectPath += distributionProjectName(distribution);
            }
            return projectPath;
        }
    
        @Override
        public String getExternalUseErrorMessage() {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Aug 20 19:11:05 GMT 2021
    - 8.8K bytes
    - Click Count (0)
  6. README.asciidoc

    ./gradlew :distribution:archives:windows-zip:assemble
    ----
    
    To build distributions for all supported platforms, run:
    ----
    ./gradlew assemble
    ----
    
    Distributions are output to `distributions/archives`.
    
    To run the test suite, see xref:TESTING.asciidoc[TESTING].
    
    [[docs]]
    == Documentation
    
    For the complete Elasticsearch documentation visit
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Apr 20 13:32:21 GMT 2021
    - 2.6K bytes
    - Click Count (0)
  7. build-tools-internal/src/test/java/org/elasticsearch/gradle/AbstractDistributionDownloadPluginTests.java

            Project distributionProject = ProjectBuilder.builder().withParent(rootProject).withName("distribution").build();
            archivesProject = ProjectBuilder.builder().withParent(distributionProject).withName("archives").build();
            packagesProject = ProjectBuilder.builder().withParent(distributionProject).withName("packages").build();
            bwcProject = ProjectBuilder.builder().withParent(distributionProject).withName("bwc").build();
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 22 07:24:59 GMT 2021
    - 4.7K bytes
    - Click Count (0)
  8. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/InternalDistributionArchiveCheckPluginFuncTest.groovy

                }
                tasks.register("buildDarwinZip", Zip) {
                    from 'SomeFile.txt'
                }"""
        }
    
        @Unroll
        def "plain class files in distribution #archiveType archives are detected"() {
            given:
            file("SomeFile.class") << """
                some dummy class file
            """
            buildFile << """
                tasks.withType(AbstractArchiveTask).configureEach {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 03 10:22:28 GMT 2021
    - 5.9K bytes
    - Click Count (0)
  9. src/test/resources/jcifs/smb1/util/mime.map

    application/hep                hep              # Hummingbird Host Explorer Profiles
    application/lotus-123          wks              # Lotus 123
    application/mac-binhex40       hqx              # Macintosh binhexed archives
    application/mspowerpoint       ppt              # Microsoft Powerpoint
    application/msword             doc              # Microsoft Word
    application/octet-stream       bin exe ani      # Binary File
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 5.9K bytes
    - Click Count (0)
  10. ci/official/utilities/setup_macos.sh

        git clone https://github.com/pyenv/pyenv.git "$PYENV_ROOT"
      fi
      echo "Upgraded pyenv version: $(pyenv --version)"
    fi
    
    # Scheduled nightly and release builds upload build artifacts (Pip packages,
    # Libtensorflow archives) to GCS buckets. TFCI Mac VMs need to authenticate as
    # a service account that has the right permissions to be able to do so.
    set +x
    if [[ -n "${GOOGLE_APPLICATION_CREDENTIALS:-}" ]]; then
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Mon Oct 06 22:42:26 GMT 2025
    - 6.8K bytes
    - Click Count (0)
Back to Top