Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 94 for fileFor (0.16 sec)

  1. 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)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/IsolatingIncrementalAnnotationProcessingIntegrationTest.groovy

                        String className = typeElement.getSimpleName().toString() + "Thingy";
                        try {
                            JavaFileObject sourceFile = filer.createSourceFile(className, element);
                            Writer writer = sourceFile.openWriter();
                            try {
                                writer.write("class " + className + " {");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/go/internal/fsys/fsys.go

    		return 0
    	}
    	// with drive letter
    	c := path[0]
    	if path[1] == ':' && ('a' <= c && c <= 'z' || 'A' <= c && c <= 'Z') {
    		return 2
    	}
    	// is it UNC? https://learn.microsoft.com/en-us/windows/win32/fileio/naming-a-file
    	if l := len(path); l >= 5 && isSlash(path[0]) && isSlash(path[1]) &&
    		!isSlash(path[2]) && path[2] != '.' {
    		// first, leading `\\` and next shouldn't be `\`. its server name.
    		for n := 3; n < l-1; n++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  5. pilot/pkg/bootstrap/server.go

    func (s *Server) initKubeClient(args *PilotArgs) error {
    	if s.kubeClient != nil {
    		// Already initialized by startup arguments
    		return nil
    	}
    	hasK8SConfigStore := false
    	if args.RegistryOptions.FileDir == "" {
    		// If file dir is set - config controller will just use file.
    		if _, err := os.Stat(args.MeshConfigFile); !os.IsNotExist(err) {
    			meshConfig, err := mesh.ReadMeshConfig(args.MeshConfigFile)
    			if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  6. src/runtime/os_windows.go

    		throw("usage")
    	}
    	f := stdcall2(_GetProcAddress, lib, uintptr(unsafe.Pointer(&name[0])))
    	return stdFunction(unsafe.Pointer(f))
    }
    
    const _MAX_PATH = 260 // https://docs.microsoft.com/en-us/windows/win32/fileio/maximum-file-path-limitation
    var sysDirectory [_MAX_PATH + 1]byte
    var sysDirectoryLen uintptr
    
    func initSysDirectory() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  7. src/os/os_windows_test.go

    // to the current working directory for the drive, such as "C:File.txt", are
    // correctly converted to absolute links of the correct symlink type (per
    // https://docs.microsoft.com/en-us/windows/win32/fileio/creating-symbolic-links).
    func TestWorkingDirectoryRelativeSymlink(t *testing.T) {
    	testenv.MustHaveSymlink(t)
    
    	// Construct a directory to be symlinked.
    	temp := t.TempDir()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	StrucVersion     uint32
    	FileVersionMS    uint32
    	FileVersionLS    uint32
    	ProductVersionMS uint32
    	ProductVersionLS uint32
    	FileFlagsMask    uint32
    	FileFlags        uint32
    	FileOS           uint32
    	FileType         uint32
    	FileSubtype      uint32
    	FileDateMS       uint32
    	FileDateLS       uint32
    }
    
    type COAUTHIDENTITY struct {
    	User           *uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  9. 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)
  10. 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