Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 434 for sysdir (0.17 sec)

  1. tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem.cc

          return;
        }
      } else if (S_ISDIR(st.st_mode)) {
        TF_SetStatus(status, TF_FAILED_PRECONDITION, "target path is a directory");
        return;
      }
    
      // We cannot rename directories yet, so prevent this.
      if (stat(src, &st) != 0) {
        TF_SetStatusFromIOError(status, errno, src);
        return;
      } else if (S_ISDIR(st.st_mode)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 24 20:08:23 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/runlit.site.cfg.py

    # limitations under the License.
    """Lit runner site configuration."""
    
    import os
    import platform
    import lit.llvm
    
    # Handle the test srcdir for platforms. On windows, things are weird with bazel.
    if platform.system() == 'Windows':
      srcdir = os.environ['TEST_SRCDIR']
      real_test_srcdir = srcdir[:srcdir.find('tensorflow/compiler/mlir')]
      external_srcdir = os.path.join(real_test_srcdir, 'external')
    else:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 21:33:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. cni/pkg/install/binaries.go

    // and returns a set of the filenames copied.
    func copyBinaries(srcDir string, targetDirs []string) (sets.String, error) {
    	copiedFilenames := sets.String{}
    	srcFiles, err := os.ReadDir(srcDir)
    	if err != nil {
    		return copiedFilenames, err
    	}
    
    	for _, f := range srcFiles {
    		if f.IsDir() {
    			continue
    		}
    
    		filename := f.Name()
    		srcFilepath := filepath.Join(srcDir, filename)
    
    		for _, targetDir := range targetDirs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 19:10:54 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. testing/performance/src/templates/project-with-source/build.xml

        </target>
    
        <target name="compile">
            <mkdir dir="\${classes.dir}"/>
            <javac srcdir="\${src.dir}" destdir="\${classes.dir}"/>
        </target>
    
        <target name="compileTest" depends="compile">
            <mkdir dir="\${test.classes.dir}"/>
            <javac srcdir="\${test.src.dir}" destdir="\${test.classes.dir}">
                <classpath>
                    <path location="\${classes.dir}"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/file/archive/AbstractArchiveFileTreeTest.java

        public void visitsContentsOfArchiveFile() {
            rootDir.file("subdir/file1.txt").write("content");
            rootDir.file("subdir2/file2.txt").write("content");
            archiveFileToRoot(getArchiveFile());
    
            assertVisits(getTree(), toList("subdir/file1.txt", "subdir2/file2.txt"), toList("subdir", "subdir2"));
            assertSetContainsForAllTypes(getTree(), toList("subdir/file1.txt", "subdir2/file2.txt"));
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/assembler/groovy/build.gradle

                            platformAsm(AssemblerSourceSet) {
                                source.srcDir "src/main/asm_i386_masm"
                            }
                        }
                        assembler.args "/Zi"
                    } else {
                        sources {
                            platformAsm(AssemblerSourceSet) {
                                source.srcDir "src/main/asm_i386_gcc"
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1004 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_get_pkgtags.txt

    ! go get example.net/missing/subdir@v0.1.0
    stderr '^go: module example.net/missing@v0.1.0 found \(replaced by ./missing\), but does not contain package example.net/missing/subdir$'
    
    go get example.net/missing@v0.1.0
    
    
    # Getting the subdirectory should continue to fail even if the corresponding
    # module is already present in the build list.
    
    ! go get example.net/missing/subdir@v0.1.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/FileCopyActionTest.groovy

            expect:
            visit(visitor,
                    file(new RelativePath(true, "rootfile.txt"), new File(destDir, "rootfile.txt")),
                    file(new RelativePath(true, "subdir", "anotherfile.txt"), new File(destDir, "subdir/anotherfile.txt"))
            )
        }
    
        private FileCopyDetailsInternal file(final RelativePath relativePath, final File targetFile) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 06 01:29:26 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/LanguageTypeSampleIntegrationTest.groovy

            then:
            output.contains """
    DocumentationComponent 'docs'
    -----------------------------
    
    Source sets
        Markdown source 'docs:userguide'
            srcDir: src${File.separator}docs${File.separator}userguide
        Text source 'docs:reference'
            srcDir: src${File.separator}docs${File.separator}reference
    
    Binaries
        DocumentationBinary 'docs:exploded'
            build using task: :docsExploded
    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

            }
    
            void taskCreatedOutputs() {
                assert outputFile.text == "This is the text"
                assert outputDir.allDescendants().containsAll('subDir/inputFile1.txt', 'subDir/inputFile2.txt')
            }
    
            File getOverlappingOutputFile() {
                file("${getOverlappingOutputDir()}/new-output.txt")
            }
    
            void overlappingOutputsAreStillPresent() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top