Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 18 for markerfile (0.07 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/docker/DockerBuildTask.java

            this.workerExecutor = workerExecutor;
            this.markerFile = objectFactory.fileProperty();
            this.dockerContext = objectFactory.directoryProperty();
            this.buildArgs = objectFactory.mapProperty(String.class, String.class);
    
            this.markerFile.set(getProject().getLayout().getBuildDirectory().file("markers/" + this.getName() + ".marker"));
        }
    
        @TaskAction
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 6.5K bytes
    - Click Count (0)
  2. 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)
  3. compat/maven-compat/src/test/java/org/apache/maven/project/AbstractMavenProjectTestCase.java

        // ----------------------------------------------------------------------
    
        protected File getLocalRepositoryPath() throws FileNotFoundException, URISyntaxException {
            File markerFile = getFileForClasspathResource("local-repo/marker.txt");
    
            return markerFile.getAbsoluteFile().getParentFile();
        }
    
        protected static File getFileForClasspathResource(String resource)
                throws FileNotFoundException, URISyntaxException {
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 20:01:00 GMT 2025
    - 7.2K bytes
    - Click Count (0)
  4. 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)
  5. 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)
  6. lib/fips140/Makefile

    cuishuang <******@****.***> 1757819635 +0800
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Tue Sep 16 00:31:59 GMT 2025
    - 1.4K bytes
    - Click Count (0)
  7. lib/fips140/README.md

    defines the meaning of the FIPS version alias x, listing
    the exact version to use.
    
    The zip files are created by cmd/go/internal/fips140/mkzip.go.
    The fips140.sum file lists checksums for the zip files.
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Wed Nov 20 20:28:34 GMT 2024
    - 416 bytes
    - Click Count (0)
  8. lib/time/update.bash

    # https://git.launchpad.net/ubuntu/+source/tzdata/tree/debian/rules?h=debian/sid
    #
    # You can see the description of these make variables in the tzdata Makefile:
    # https://github.com/eggert/tz/blob/main/Makefile
    if ! make CFLAGS=-DSTD_INSPIRED AWK=awk TZDIR=zoneinfo PACKRATDATA=backzone PACKRATLIST=zone.tab posix_only >make.out 2>&1; then
    	cat make.out
    	exit 2
    fi
    
    cd zoneinfo
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Dec 11 16:47:56 GMT 2025
    - 2.1K bytes
    - Click Count (0)
  9. 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)
  10. RELEASE.md

    *   `tf.lite`:
    
        *   Rename fields `SignatureDef` table in schema to maximize the parity with
            TF SavedModel's Signature concept.
        *   Deprecate Makefile builds. Makefile users need to migrate their builds
            to CMake or Bazel. Please refer to the
            [Build TensorFlow Lite with CMake](https://www.tensorflow.org/lite/guide/build_cmake)
            and
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Mon Mar 30 18:31:38 GMT 2026
    - 746.5K bytes
    - Click Count (3)
Back to Top