Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for virtualbox (0.06 seconds)

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

            // We lock the provider to virtualbox because the Vagrantfile specifies lots of boxes that only work
            // properly in virtualbox. Virtualbox is vagrant's default but its possible to change that default and folks do.
            execute(spec -> {
                spec.setCommand("up");
                spec.setArgs("--provision", "--provider", "virtualbox");
            });
            isVMStarted = true;
        }
    
    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. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/vagrant/VagrantBasePlugin.java

                        .filter(t -> t instanceof VagrantShellTask)
                        .filter(t -> t.getProject() == project)
                        .count()
                );
        }
    
        /**
         * Check vagrant and virtualbox versions, if any vagrant test tasks will be run.
         */
        static class VagrantSetupCheckerPlugin implements Plugin<Project> {
    
    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)
Back to Top