Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 764 for tzfile (0.14 sec)

  1. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

                "/a_file");
      EXPECT_EQ(GetRelativePath(fs->TranslateName(GetURIForPath("a_dir/a_file"))),
                "/a_dir/a_file");
      EXPECT_EQ(GetRelativePath(fs->TranslateName(GetURIForPath("./a_file"))),
                "/a_file");
      EXPECT_EQ(GetRelativePath(fs->TranslateName(
                    GetURIForPath("a/convoluted/../path/./to/.//.///a/file"))),
                "/a/path/to/a/file");
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  2. security/pkg/k8s/chiron/fuzz_test.go

    	f.Fuzz(func(t *testing.T, caCert []byte) {
    		// create ca file
    		caFile, err := os.Create("caFile")
    		if err != nil {
    			return
    		}
    		defer func() {
    			caFile.Close()
    			os.Remove("caFile")
    		}()
    		_, err = caFile.Write(caCert)
    		if err != nil {
    			return
    		}
    
    		// call readCACert()
    		_, _ = readCACert("caFile")
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 12 14:51:41 UTC 2022
    - 988 bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/ValidationActions.java

            }
        },
        INPUT_FILE_VALIDATOR("file") {
            @Override
            public void doValidate(String propertyName, Object value, PropertyValidationContext context) {
                File file = toFile(context, value);
                if (!file.exists()) {
                    reportMissingInput(context, "File", propertyName, file);
                } else if (!file.isFile()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/FileUtils.java

            File file = toFileIfAvailable(path);
            if (file != null) {
                Instrumented.fileOpened(file, consumer);
            }
        }
    
        public static void tryReportDirectoryContentObserved(Path path, String consumer) {
            File file = toFileIfAvailable(path);
            if (file != null) {
                Instrumented.directoryContentObserved(file, consumer);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 06 01:37:44 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/dependencyManagement/declaringDependencies-fileDependencies/groovy/build.gradle

            projectDir.file('libs').asFile.mkdirs()
            projectDir.file('tools').asFile.mkdirs()
            projectDir.file('ant/antcontrib.jar').asFile.createNewFile()
            projectDir.file('libs/commons-lang.jar').asFile.createNewFile()
            projectDir.file('libs/log4j.jar').asFile.createNewFile()
            projectDir.file('tools/a.exe').asFile.createNewFile()
            projectDir.file('tools/b.exe').asFile.createNewFile()
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/dependencyManagement/declaringDependencies-fileDependencies/kotlin/build.gradle.kts

            projectDir.file("libs").asFile.mkdirs()
            projectDir.file("tools").asFile.mkdirs()
            projectDir.file("ant/antcontrib.jar").asFile.createNewFile()
            projectDir.file("libs/commons-lang.jar").asFile.createNewFile()
            projectDir.file("libs/log4j.jar").asFile.createNewFile()
            projectDir.file("tools/a.exe").asFile.createNewFile()
            projectDir.file("tools/b.exe").asFile.createNewFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    // license that can be found in the LICENSE file.
    
    package tlog
    
    import (
    	"fmt"
    	"strconv"
    	"strings"
    )
    
    // A Tile is a description of a transparency log tile.
    // A tile of height H at level L offset N lists W consecutive hashes
    // at level H*L of the tree starting at offset N*(2**H).
    // A complete tile lists 2**H hashes; a partial tile lists fewer.
    // Note that a tile represents the entire subtree of height H
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. src/go/build/testdata/other/file/file.go

    // Test data - not compiled.
    
    package file
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 56 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/files/archiveNaming/groovy/somedir/file.txt

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 19 bytes
    - Viewed (0)
  10. pkg/file/file.go

    	}
    	defer func() {
    		if Exists(tmpFile.Name()) {
    			if rmErr := os.Remove(tmpFile.Name()); rmErr != nil {
    				if err != nil {
    					err = fmt.Errorf("%s: %w", rmErr.Error(), err)
    				} else {
    					err = rmErr
    				}
    			}
    		}
    	}()
    
    	if err := os.Chmod(tmpFile.Name(), mode); err != nil {
    		return err
    	}
    
    	if _, err := io.Copy(tmpFile, data); err != nil {
    		if closeErr := tmpFile.Close(); closeErr != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 21:42:29 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top