Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 47 for vagrant (0.13 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/vagrant/VagrantMachine.java

    import java.nio.file.Paths;
    import java.util.Arrays;
    import java.util.Objects;
    import java.util.function.UnaryOperator;
    
    /**
     * An helper to manage a vagrant box.
     *
     * This is created alongside a {@link VagrantExtension} for a project to manage starting and
     * stopping a single vagrant box.
     */
    public class VagrantMachine {
    
        private final VagrantExtension extension;
        private final Provider<ReaperService> reaperServiceProvider;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 7.5K bytes
    - Click Count (0)
  2. .ci/scripts/packaging-test.sh

      # This ultimately needs to be fixed at the image level - see infra
      # issue 15654.
      sudo mv /etc/sysctl.d/99-gce.conf /etc/sysctl.d/98-gce.conf
    fi
    
    # Required by bats
    sudo touch /etc/is_vagrant_vm
    sudo useradd vagrant
    
    set -e
    
    . .ci/java-versions.properties
    RUNTIME_JAVA_HOME=$HOME/.java/$ES_RUNTIME_JAVA
    BUILD_JAVA_HOME=$HOME/.java/$ES_BUILD_JAVA
    
    rm -Rfv $HOME/.gradle/init.d/ && mkdir -p $HOME/.gradle/init.d
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 2.3K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/vagrant/VagrantBasePlugin.java

                        .count()
                );
        }
    
        /**
         * Check vagrant and virtualbox versions, if any vagrant test tasks will be run.
         */
        static class VagrantSetupCheckerPlugin implements Plugin<Project> {
    
            private static final Pattern VAGRANT_VERSION = Pattern.compile("Vagrant (\\d+\\.\\d+\\.\\d+)");
            private static final Pattern VIRTUAL_BOX_VERSION = Pattern.compile("(\\d+\\.\\d+)");
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 6.1K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/GradleDistroTestTask.java

    import org.elasticsearch.gradle.internal.vagrant.VagrantShellTask;
    import org.gradle.api.tasks.Input;
    import org.gradle.api.tasks.options.Option;
    
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;
    
    import static org.elasticsearch.gradle.internal.vagrant.VagrantMachine.convertLinuxPath;
    import static org.elasticsearch.gradle.internal.vagrant.VagrantMachine.convertWindowsPath;
    
    /**
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2.6K bytes
    - Click Count (0)
  5. .ci/os.sh

      # This ultimately needs to be fixed at the image level - see infra
      # issue 15654.
      sudo mv /etc/sysctl.d/99-gce.conf /etc/sysctl.d/98-gce.conf
    fi
    
    # Required by bats
    sudo touch /etc/is_vagrant_vm
    sudo useradd vagrant
    
    set -e
    
    . .ci/java-versions.properties
    RUNTIME_JAVA_HOME=$HOME/.java/$ES_RUNTIME_JAVA
    BUILD_JAVA_HOME=$HOME/.java/$ES_BUILD_JAVA
    
    rm -Rfv $HOME/.gradle/init.d/ && mkdir -p $HOME/.gradle/init.d
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Feb 17 17:41:23 GMT 2021
    - 2.3K bytes
    - Click Count (0)
  6. .gitignore

    .netrwhist
    
    # cscope-related files
    cscope.*
    
    # Go test binaries
    *.test
    /hack/.test-cmd-auth
    
    # JUnit test output from ginkgo e2e tests
    /junit*.xml
    
    # Mercurial files
    **/.hg
    **/.hg*
    
    # Vagrant
    .vagrant
    network_closure.sh
    
    # Local cluster env variables
    /cluster/env.sh
    
    # Compiled binaries in third_party
    /third_party/pkg
    
    # Also ignore etcd installed by hack/install-etcd.sh
    /third_party/etcd*
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Tue Mar 17 02:28:41 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  7. .gitignore

    build-eclipse/
    
    # netbeans files
    nb-configuration.xml
    nbactions.xml
    
    # gradle stuff
    .gradle/
    build/
    
    # vscode stuff
    .vscode/
    
    # vs stuff
    .vs/
    
    # testing stuff
    **/.local*
    .vagrant/
    /logs/
    
    # osx stuff
    .DS_Store
    
    # default folders in which the create_bwc_index.py expects to find old es versions in
    /backwards
    /dev-tools/backwards
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jun 10 23:06:44 GMT 2021
    - 1.2K bytes
    - Click Count (0)
  8. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/vagrant/VagrantShellTask.java

     */
    
    package org.elasticsearch.gradle.internal.vagrant;
    
    import org.gradle.api.DefaultTask;
    import org.gradle.api.tasks.Input;
    import org.gradle.api.tasks.TaskAction;
    
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.List;
    import java.util.function.UnaryOperator;
    import java.util.stream.Collectors;
    
    import static org.elasticsearch.gradle.internal.vagrant.VagrantMachine.convertLinuxPath;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 4.3K bytes
    - Click Count (0)
  9. .ci/dockerOnLinuxExclusions

    # Docker tests to be skipped on that OS. If /etc/os-release doesn't exist
    # (as is the case on centos-6, for example) then that OS will again be
    # excluded.
    debian-8
    opensuse-leap-15.1
    ol-7.7
    sles-12.3 # older version used in Vagrant image
    sles-12.5
    sles-15.1
    sles-15.2
    sles-15.3
    
    # These OSes are deprecated and filtered starting with 8.0.0, but need to be excluded
    # for PR checks
    centos-6
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jul 29 23:07:12 GMT 2021
    - 615 bytes
    - Click Count (0)
  10. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/vagrant/VagrantProgressLogger.java

     * in compliance with, at your election, the Elastic License 2.0 or the Server
     * Side Public License, v 1.
     */
    
    package org.elasticsearch.gradle.internal.vagrant;
    
    import java.util.function.UnaryOperator;
    
    public class VagrantProgressLogger implements UnaryOperator<String> {
    
        private static final String HEADING_PREFIX = "==> ";
    
        private final String squashedPrefix;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 1.8K bytes
    - Click Count (0)
Back to Top