Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for DebElasticsearchDistributionType (0.18 seconds)

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

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

    import org.elasticsearch.gradle.ElasticsearchDistributionType;
    
    import java.util.List;
    
    public class InternalElasticsearchDistributionTypes {
        public static ElasticsearchDistributionType DEB = new DebElasticsearchDistributionType();
        public static ElasticsearchDistributionType RPM = new RpmElasticsearchDistributionType();
        public static ElasticsearchDistributionType DOCKER = new DockerElasticsearchDistributionType();
    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