Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 215 for ftruncate (0.2 sec)

  1. internal/disk/fdatasync_linux.go

    // do not require flushing because they are not necessary for a subsequent data
    // read to be handled correctly. On the other hand, a change to the file size
    // (st_size, as made by say ftruncate(2)), would require a metadata flush.
    //
    // The aim of fdatasync() is to reduce disk activity for applications that
    // do not require all metadata to be synchronized with the disk.
    func Fdatasync(f *os.File) error {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Sep 29 23:40:28 GMT 2021
    - 1.8K bytes
    - Viewed (0)
  2. misc/wasm/wasm_exec.js

    			fchmod(fd, mode, callback) { callback(enosys()); },
    			fchown(fd, uid, gid, callback) { callback(enosys()); },
    			fstat(fd, callback) { callback(enosys()); },
    			fsync(fd, callback) { callback(null); },
    			ftruncate(fd, length, callback) { callback(enosys()); },
    			lchown(path, uid, gid, callback) { callback(enosys()); },
    			link(path, link, callback) { callback(enosys()); },
    			lstat(path, callback) { callback(enosys()); },
    JavaScript
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon May 22 17:47:47 GMT 2023
    - 16.3K bytes
    - Viewed (1)
  3. api/go1.1.txt

    pkg syscall (freebsd-386), const SYS_FREEBSD6_FTRUNCATE = 201
    pkg syscall (freebsd-386), const SYS_FREEBSD6_LSEEK = 199
    pkg syscall (freebsd-386), const SYS_FREEBSD6_MMAP = 197
    pkg syscall (freebsd-386), const SYS_FREEBSD6_PREAD = 173
    pkg syscall (freebsd-386), const SYS_FREEBSD6_PWRITE = 174
    pkg syscall (freebsd-386), const SYS_FREEBSD6_TRUNCATE = 200
    pkg syscall (freebsd-386), const SYS_FSTAT = 189
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  4. api/go1.20.txt

    pkg syscall (freebsd-riscv64), const SYS_FSYNC = 95 #53466
    pkg syscall (freebsd-riscv64), const SYS_FSYNC ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_FTRUNCATE = 480 #53466
    pkg syscall (freebsd-riscv64), const SYS_FTRUNCATE ideal-int #53466
    pkg syscall (freebsd-riscv64), const SYS_FUTIMENS = 546 #53466
    pkg syscall (freebsd-riscv64), const SYS_FUTIMENS ideal-int #53466
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 21:23:32 GMT 2023
    - 602.6K bytes
    - Viewed (0)
  5. api/go1.16.txt

    pkg syscall (darwin-arm64), const SYS_FSYNC_NOCANCEL = 408
    pkg syscall (darwin-arm64), const SYS_FSYNC_NOCANCEL ideal-int
    pkg syscall (darwin-arm64), const SYS_FTRUNCATE = 201
    pkg syscall (darwin-arm64), const SYS_FTRUNCATE ideal-int
    pkg syscall (darwin-arm64), const SYS_FUTIMES = 139
    pkg syscall (darwin-arm64), const SYS_FUTIMES ideal-int
    pkg syscall (darwin-arm64), const SYS_GETATTRLIST = 220
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  6. api/go1.14.txt

    pkg syscall (freebsd-arm64), const SYS_FSYNC = 95
    pkg syscall (freebsd-arm64), const SYS_FSYNC ideal-int
    pkg syscall (freebsd-arm64), const SYS_FTRUNCATE = 480
    pkg syscall (freebsd-arm64), const SYS_FTRUNCATE ideal-int
    pkg syscall (freebsd-arm64), const SYS_FUTIMENS = 546
    pkg syscall (freebsd-arm64), const SYS_FUTIMENS ideal-int
    pkg syscall (freebsd-arm64), const SYS_FUTIMES = 206
    Plain Text
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 508.9K bytes
    - Viewed (0)
  7. cmd/metacache-server-pool.go

    		return entries, listErr
    	}
    	entries.reuse = true
    	truncated := entries.len() > o.Limit || err == nil
    	entries.truncate(o.Limit)
    	if !o.Transient && truncated {
    		if o.ID == "" {
    			entries.listID = mustGetUUID()
    		} else {
    			entries.listID = o.ID
    		}
    	}
    	if !truncated {
    		return entries, io.EOF
    	}
    	return entries, nil
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 12.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Ascii.java

       * the sequence will be returned as a string with no changes to the content.
       *
       * <p>Examples:
       *
       * <pre>{@code
       * Ascii.truncate("foobar", 7, "..."); // returns "foobar"
       * Ascii.truncate("foobar", 5, "..."); // returns "fo..."
       * }</pre>
       *
       * <p><b>Note:</b> This method <i>may</i> work with certain non-ASCII text but is not safe for use
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Jul 19 15:43:07 GMT 2021
    - 21.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/base/Ascii.java

       * the sequence will be returned as a string with no changes to the content.
       *
       * <p>Examples:
       *
       * <pre>{@code
       * Ascii.truncate("foobar", 7, "..."); // returns "foobar"
       * Ascii.truncate("foobar", 5, "..."); // returns "fo..."
       * }</pre>
       *
       * <p><b>Note:</b> This method <i>may</i> work with certain non-ASCII text but is not safe for use
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Jul 19 15:43:07 GMT 2021
    - 21.6K bytes
    - Viewed (0)
  10. cmd/object-api-datatypes.go

    type ListObjectVersionsInfo struct {
    	// Indicates whether the returned list objects response is truncated. A
    	// value of true indicates that the list was truncated. The list can be truncated
    	// if the number of objects exceeds the limit allowed or specified
    	// by max keys.
    	IsTruncated bool
    
    	// When response is truncated (the IsTruncated element value in the response is true),
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 20.8K bytes
    - Viewed (0)
Back to top