Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for GetFileType (0.5 sec)

  1. src/os/types_windows.go

    	LastAccessTime syscall.Filetime
    	LastWriteTime  syscall.Filetime
    	FileSizeHigh   uint32
    	FileSizeLow    uint32
    
    	// from Win32finddata and GetFileInformationByHandleEx
    	ReparseTag uint32
    
    	// what syscall.GetFileType returns
    	filetype uint32
    
    	// used to implement SameFile
    	sync.Mutex
    	path             string
    	vol              uint32
    	idxhi            uint32
    	idxlo            uint32
    	appendNameToPath bool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/recomp/AbstractRecompilationSpecProvider.java

                return;
            }
            for (FileChange fileChange : sourceChanges) {
                if (spec.isFullRebuildNeeded()) {
                    return;
                }
                if (fileChange.getFileType() != FileType.FILE) {
                    continue;
                }
    
                String relativeFilePath = fileChange.getNormalizedPath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/smb1/AndXServerMessageBlock.java

                     */
                    if ( this.getCommand() == SMB_COM_NT_CREATE_ANDX && ( (SmbComNTCreateAndXResponse) this ).isExtended()
                            && ( (SmbComNTCreateAndXResponse) this ).getFileType() != 1 ) {
                        this.wordCount += 8;
                    }
                }
    
                bufferIndex = start + 1 + ( this.wordCount * 2 );
            }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Nov 28 10:56:27 UTC 2022
    - 14.3K bytes
    - Viewed (0)
  4. src/os/file_windows.go

    func newFile(h syscall.Handle, name string, kind string) *File {
    	if kind == "file" {
    		var m uint32
    		if syscall.GetConsoleMode(h, &m) == nil {
    			kind = "console"
    		}
    		if t, err := syscall.GetFileType(h); err == nil && t == syscall.FILE_TYPE_PIPE {
    			kind = "pipe"
    		}
    	}
    
    	f := &File{&file{
    		pfd: poll.FD{
    			Sysfd:         h,
    			IsStream:      true,
    			ZeroReadIsEOF: true,
    		},
    		name: name,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_windows.go

    	procGetFileInformationByHandle         = modkernel32.NewProc("GetFileInformationByHandle")
    	procGetFileType                        = modkernel32.NewProc("GetFileType")
    	procGetFinalPathNameByHandleW          = modkernel32.NewProc("GetFinalPathNameByHandleW")
    	procGetFullPathNameW                   = modkernel32.NewProc("GetFullPathNameW")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    * the link:{javadocPath}/org/gradle/work/FileChange.html#getNormalizedPath--[normalized path] of the changed file
    * the link:{javadocPath}/org/gradle/work/FileChange.html#getFileType--[file type] of the changed file
    
    The following example demonstrates an incremental task that has a directory input.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	switch whence {
    	case 0:
    		w = FILE_BEGIN
    	case 1:
    		w = FILE_CURRENT
    	case 2:
    		w = FILE_END
    	}
    	hi := int32(offset >> 32)
    	lo := int32(offset)
    	// use GetFileType to check pipe, pipe can't do seek
    	ft, _ := GetFileType(fd)
    	if ft == FILE_TYPE_PIPE {
    		return 0, syscall.EPIPE
    	}
    	rlo, e := SetFilePointer(fd, lo, &hi, w)
    	if e != nil {
    		return 0, e
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbFile.java

                    customizeCreate(req, resp);
    
                    h.send(req, resp);
                    info = resp;
                    fileSize = resp.getEndOfFile();
                    this.fileLocator.updateType(resp.getFileType());
                    fh = new SmbFileHandleImpl(config, resp.getFid(), h, uncPath, flags, access, attrs, options, resp.getEndOfFile());
                }
                else {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  9. src/syscall/syscall_windows.go

    //sys	GetTempPath(buflen uint32, buf *uint16) (n uint32, err error) = GetTempPathW
    //sys	CreatePipe(readhandle *Handle, writehandle *Handle, sa *SecurityAttributes, size uint32) (err error)
    //sys	GetFileType(filehandle Handle) (n uint32, err error)
    //sys	CryptAcquireContext(provhandle *Handle, container *uint16, provider *uint16, provtype uint32, flags uint32) (err error) = advapi32.CryptAcquireContextW
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	procGetFileTime                                          = modkernel32.NewProc("GetFileTime")
    	procGetFileType                                          = modkernel32.NewProc("GetFileType")
    	procGetFinalPathNameByHandleW                            = modkernel32.NewProc("GetFinalPathNameByHandleW")
    	procGetFullPathNameW                                     = modkernel32.NewProc("GetFullPathNameW")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
Back to top