Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for dir__ (0.04 sec)

  1. platforms/documentation/docs/src/docs/userguide/core-plugins/distribution_plugin.adoc

    The files will be created at `__layout.buildDirectory.dir__("distributions/__${project.name}__-__${project.version}__.__«ext»__")`.
    
    You can run `gradle installDist` to assemble the uncompressed distribution into `__layout.buildDirectory.dir__("install/__${project.name}__")`.
    
    [[sec:distribution_tasks]]
    == Tasks
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/common/python/testing_test.py

        super().setUp()
    
        self.path_a = self.create_tempdir('dir_a').full_path
        self.create_tempfile(file_path='dir_a/w.txt', content='abcd')
    
        self.path_b = self.create_tempdir('dir_b').full_path
        self.create_tempfile(file_path='dir_b/x.txt', content='1234')
        self.create_tempfile(file_path='dir_b/y.txt', content='56')
        self.create_tempfile(file_path='dir_b/z.txt', content='78')
    
      def test_get_dir_size(self):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. docs/bucket/replication/sio-error.sh

    ./mc cp internal.tar myminio1/testbucket/dir/1.tar
    ./mc cp internal.tar myminio2/testbucket/dir/2.tar
    
    sleep 1
    
    ./mc ls -r --versions myminio1/testbucket/dir/ >/tmp/dir_1.txt
    ./mc ls -r --versions myminio2/testbucket/dir/ >/tmp/dir_2.txt
    
    out=$(diff -qpruN /tmp/dir_1.txt /tmp/dir_2.txt)
    ret=$?
    if [ $ret -ne 0 ]; then
    	echo "BUG: expected no 'diff' after replication: $out"
    	exit 1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. pkg/volume/util/fs/fs_windows_test.go

    func TestDiskUsage(t *testing.T) {
    
    	dir1, err := os.MkdirTemp("", "dir_1")
    	if err != nil {
    		t.Fatalf("TestDiskUsage failed: %s", err.Error())
    	}
    	defer os.RemoveAll(dir1)
    
    	tmpfile1, err := os.CreateTemp(dir1, "test")
    	if _, err = tmpfile1.WriteString("just for testing"); err != nil {
    		t.Fatalf("TestDiskUsage failed: %s", err.Error())
    	}
    	dir2, err := os.MkdirTemp(dir1, "dir_2")
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. tensorflow/api_template.__init__.py

    # Find the location of this exact file.
    _current_file_location = _inspect.getfile(_inspect.currentframe())
    
    def _running_from_pip_package():
      return any(
          _current_file_location.startswith(dir_) for dir_ in _site_packages_dirs)
    
    if _running_from_pip_package():
      # TODO(gunan): Add sanity checks to loaded modules here.
    
      # Load first party dynamic kernels.
      _tf_dir = _os.path.dirname(_current_file_location)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 06:27:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. tensorflow/api_template_v1.__init__.py

    # Find the location of this exact file.
    _current_file_location = _inspect.getfile(_inspect.currentframe())
    
    def _running_from_pip_package():
      return any(
          _current_file_location.startswith(dir_) for dir_ in _site_packages_dirs)
    
    if _running_from_pip_package():
      # TODO(gunan): Add sanity checks to loaded modules here.
    
      # Load first party dynamic kernels.
      _tf_dir = _os.path.dirname(_current_file_location)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/build_overlay.txt

    TODO(matloob): Remove this requirement.
    -- m/printpath/about.txt --
    the actual code is in the overlay
    -- m/overlay.json --
    {
    	"Replace": {
    		"f.go": "overlay/f.go",
    		"dir/g.go": "overlay/dir_g.go",
    		"dir2/i.go": "overlay/dir2_i.go",
    		"printpath/main.go": "overlay/printpath.go",
    		"printpath/other.go": "overlay2/printpath2.go",
    		"call_asm/asm_gc.s": "overlay/asm_gc.s",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 29 00:40:18 UTC 2022
    - 7.9K bytes
    - Viewed (0)
Back to top