Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for RpmElasticsearchDistributionType (0.25 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/distribution/RpmElasticsearchDistributionType.java

     */
    
    package org.elasticsearch.gradle.internal.distribution;
    
    import org.elasticsearch.gradle.ElasticsearchDistributionType;
    
    public class RpmElasticsearchDistributionType implements ElasticsearchDistributionType {
    
        RpmElasticsearchDistributionType() {}
    
        @Override
        public String getName() {
            return "rpm";
        }
    
        @Override
        public boolean shouldExtract() {
            return false;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 838 bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/distribution/InternalElasticsearchDistributionTypes.java

    public class InternalElasticsearchDistributionTypes {
        public static ElasticsearchDistributionType DEB = new DebElasticsearchDistributionType();
        public static ElasticsearchDistributionType RPM = new RpmElasticsearchDistributionType();
        public static ElasticsearchDistributionType DOCKER = new DockerElasticsearchDistributionType();
        public static ElasticsearchDistributionType DOCKER_UBI = new DockerUbiElasticsearchDistributionType();
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Aug 20 19:11:05 GMT 2021
    - 1.5K bytes
    - Click Count (0)
Back to Top