Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for fileFor (0.11 sec)

  1. src/net/http/fs_test.go

    	dirMod := time.Unix(123, 0).UTC()
    	fileMod := time.Unix(1000000000, 0).UTC()
    	fs := fakeFS{
    		"/": &fakeFileInfo{
    			dir:     true,
    			modtime: dirMod,
    			ents: []*fakeFileInfo{
    				{
    					basename: "b",
    					modtime:  fileMod,
    					contents: contents,
    				},
    				{
    					basename: "a",
    					modtime:  fileMod,
    					contents: contents,
    				},
    			},
    		},
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    # endif  // __BORLANDC__
    
    # if GTEST_OS_WINDOWS_MOBILE
    inline int FileNo(FILE* file) { return reinterpret_cast<int>(_fileno(file)); }
    // Stat(), RmDir(), and IsDir() are not needed on Windows CE at this
    // time and thus not defined there.
    # else
    inline int FileNo(FILE* file) { return _fileno(file); }
    inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    # endif  // __BORLANDC__
    
    # if GTEST_OS_WINDOWS_MOBILE
    inline int FileNo(FILE* file) { return reinterpret_cast<int>(_fileno(file)); }
    // Stat(), RmDir(), and IsDir() are not needed on Windows CE at this
    // time and thus not defined there.
    # else
    inline int FileNo(FILE* file) { return _fileno(file); }
    inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/dwarf.go

    // emitted after that.
    func (d *dwctxt) writeDirFileTables(unit *sym.CompilationUnit, lsu *loader.SymbolBuilder) {
    	type fileDir struct {
    		base string
    		dir  int
    	}
    	dirNums := make(map[string]int)
    	dirs := []string{""}
    	files := []fileDir{}
    
    	// Preprocess files to collect directories. This assumes that the
    	// file table is already de-duped.
    	for i, name := range unit.FileTable {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

            $system_stats_monitors += @("${npd_dir}\config\windows-system-stats-monitor.json")
    
            # NPD Configuration for CRI monitor
            $system_log_monitors += @("${npd_dir}\config\windows-containerd-monitor-filelog.json")
            $custom_plugin_monitors += @("${npd_dir}\config\windows-health-checker-containerd.json")
    
            $flags="--v=2 --port=20256 --log_dir=${npd_logs_dir}"
            if ($system_log_monitors.count -gt 0) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbFile.java

                log.debug("getDiskFreeSpace", ex);
                switch ( ex.getNtStatus() ) {
                case NtStatus.NT_STATUS_INVALID_INFO_CLASS:
                case NtStatus.NT_STATUS_UNSUCCESSFUL: // NetApp Filer
                    if ( !th.isSMB2() ) {
                        // SMB_FS_FULL_SIZE_INFORMATION not supported by the server.
                        ai = queryFSInformation(th, AllocInfo.class, FileSystemInformation.SMB_INFO_ALLOCATION);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
Back to top