Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for dwinfo (0.08 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                attributes.put("sectanchors", true);
                attributes.put("sectlinks", true);
                attributes.put("linkattrs", true);
                attributes.put("reproducible", "");
                attributes.put("docinfo", "");
                attributes.put("lang", "en-US");
                attributes.put("encoding", "utf-8");
                attributes.put("idprefix", "");
                attributes.put("website", "https://gradle.org");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 05:46:51 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  2. src/os/file.go

    // as an error to be reported.
    func ReadFile(name string) ([]byte, error) {
    	f, err := Open(name)
    	if err != nil {
    		return nil, err
    	}
    	defer f.Close()
    
    	var size int
    	if info, err := f.Stat(); err == nil {
    		size64 := info.Size()
    		if int64(int(size64)) == size64 {
    			size = int(size64)
    		}
    	}
    	size++ // one byte for final read at EOF
    
    	// If a file claims a small size, read at least 512 bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
Back to top