Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,791 for path_ (0.04 sec)

  1. tensorflow/compiler/mlir/lite/debug/debug_test.cc

        if (auto status = tsl::Env::Default()->GetChildren(path_, &files);
            !status.ok()) {
          return status;
        }
        if (files.size() != 1) {
          return absl::FailedPreconditionError(
              "Expecting directory to have one child.");
        }
        *dump_dir = tsl::io::JoinPath(path_, files[0]);
        return absl::OkStatus();
      }
    
      std::string path_;
      mlir::MLIRContext context_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 11:15:16 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    It makes projects identifiable and addressable without conflicts.
    
    In a composite build, Gradle adds additional qualification to each project from an included build to avoid project path conflicts.
    The full path to identify a project in a composite build is called a _build-tree path_.
    It consists of a _build path_ of an included build and a _project path_ of the project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods_windows_test.go

    				ReadOnly:  false,
    			},
    			{
    				MountPath: "c:/mnt/path3",
    				Name:      "disk",
    				ReadOnly:  true,
    			},
    			{
    				MountPath: "c:/mnt/path4",
    				Name:      "disk4",
    				ReadOnly:  false,
    			},
    			{
    				MountPath: "c:/mnt/path5",
    				Name:      "disk5",
    				ReadOnly:  false,
    			},
    			{
    				MountPath: `\mnt\path6`,
    				Name:      "disk6",
    				ReadOnly:  false,
    			},
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    To tell the Java compiler that a Jar is a module, as opposed to a traditional Java library, Gradle needs to place it on the so called _module path_.
    It is an alternative to the _classpath_, which is the traditional way to tell the compiler about compiled dependencies.
    Gradle will automatically put a Jar of your dependencies on the module path, instead of the classpath, if these three things are true:
    
    * `java.modularity.inferModulePath` is *not* turned off
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ClasspathTest.groovy

            '/pathA' | '/pathB' | 'false' | 'true'  | [[path: '/pathA', test: 'false'], [path: '/pathB', test: 'true' ]]
            '/pathA' | '/pathB' | 'true'  | 'false' | [[path: '/pathA', test: 'true' ], [path: '/pathB', test: 'false']]
            '/pathA' | '/pathB' | 'true'  | 'true'  | [[path: '/pathA', test: 'true' ], [path: '/pathB', test: 'true' ]]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    If you add or remove a project that uses the Kotlin DSL, build script compilation fails if you forget to update a dependency.
    
    The project accessors are mapped from the _project path_.
    For example, if a project path is `:commons:utils:some:lib` then the project accessor will be `projects.commons.utils.some.lib` (which is the short-hand notation for `projects.getCommons().getUtils().getSome().getLib()`).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods_linux_test.go

    					},
    					{
    						MountPath:        "/mnt/path3",
    						Name:             "disk",
    						ReadOnly:         true,
    						MountPropagation: &propagationNone,
    					},
    					{
    						MountPath: "/mnt/path4",
    						Name:      "disk4",
    						ReadOnly:  false,
    					},
    					{
    						MountPath: "/mnt/path5",
    						Name:      "disk5",
    						ReadOnly:  false,
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 18:00:59 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. subprojects/core-api/src/test/groovy/org/gradle/api/file/RelativePathSpockTest.groovy

            given:
            def path1 = new RelativePath(true, "a", "b", "d");
            def path2 = new RelativePath(true, "a", "b", "c");
            expect:
            path1.compareTo(path2) > 0
            path1.compareTo(path1) == 0
            path2.compareTo(path1) < 0
            path2.compareTo(path2) == 0
        }
    
        def "compareTo should compare paths with different number of segments"() {
            given:
            def path1 = new RelativePath(true, "b");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 07 16:42:37 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/FilePathUtil.java

            for (; pos < maxPos; pos++) {
                if (path1.charAt(pos) != path2.charAt(pos + offset)) {
                    break;
                }
                if (path1.charAt(pos) == separatorChar) {
                    lastSeparator = pos;
                }
            }
            if (pos == maxPos) {
                if (path1.length() == path2.length() - offset) {
                    return pos;
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/common/python/testing.py

    def get_size_ratio(path_a: str, path_b: str) -> float:
      """Return the size ratio of the given paths.
    
      Args:
        path_a: Path of a directory or a file to be the nominator of the ratio.
        path_b: Path of a directory or a file to be the denominator of the ratio.
    
      Returns:
        Ratio of size of path_a / size of path_b.
      """
      size_a = get_dir_size(path_a)
      size_b = get_dir_size(path_b)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top