Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for markerfile (0.09 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/SplitPackagesAuditTask.java

        private final RegularFileProperty markerFile;
    
        @Inject
        public SplitPackagesAuditTask(WorkerExecutor workerExecutor, ObjectFactory objectFactory) {
            this.workerExecutor = workerExecutor;
            this.srcDirs = objectFactory.setProperty(File.class);
            this.ignoreClasses = objectFactory.setProperty(String.class);
            this.markerFile = objectFactory.fileProperty();
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 08 22:04:23 GMT 2021
    - 14.2K bytes
    - Click Count (0)
  2. Vagrantfile

      raise ArgumentError, 'install_command is required' if install_command == 'required'
    
      if Vagrant.has_plugin?('vagrant-cachier')
        config.cache.scope = :box
      end
    
      config.vm.provision 'markerfile', type: 'shell', inline: <<-SHELL
        touch /etc/is_vagrant_vm
        touch /is_vagrant_vm # for consistency between linux and windows
      SHELL
    
      # This prevents leftovers from previous tests using the
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Feb 17 17:41:23 GMT 2021
    - 14.9K bytes
    - Click Count (0)
  3. Makefile

    all: build
    
    checks: ## check dependencies
    	@echo "Checking dependencies"
    	@(env bash $(PWD)/buildscripts/checkdeps.sh)
    
    help: ## print this help
    	@grep -E '^[a-zA-Z_-]+:.*?## .*$$' Makefile | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-40s\033[0m %s\n", $$1, $$2}'
    
    getdeps: ## fetch necessary dependencies
    	@mkdir -p ${GOPATH}/bin
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Apr 27 00:44:22 GMT 2025
    - 11.2K bytes
    - Click Count (0)
  4. configure.py

      open(_TF_BAZELRC, 'w').close()
    
    
    def cleanup_makefile():
      """Delete any leftover BUILD files from the Makefile build.
    
      These files could interfere with Bazel parsing.
      """
      makefile_download_dir = os.path.join(_TF_WORKSPACE_ROOT, 'tensorflow',
                                           'contrib', 'makefile', 'downloads')
      if os.path.isdir(makefile_download_dir):
        for root, _, filenames in os.walk(makefile_download_dir):
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Fri Dec 19 16:32:04 GMT 2025
    - 48.3K bytes
    - Click Count (0)
Back to Top