Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for appendNode (0.2 sec)

  1. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.plugins.ide.eclipse.model.AbstractLibrary.appendNode(groovy.util.Node)> has arguments/return type groovy.util.Node that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (AbstractLibrary.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  2. src/os/zero_copy_linux.go

    	//
    	// Visit https://man7.org/linux/man-pages/man2/copy_file_range.2.html#ERRORS and
    	// https://man7.org/linux/man-pages/man2/splice.2.html#ERRORS for details.
    	if f.appendMode {
    		return 0, false, nil
    	}
    
    	written, handled, err = f.copyFileRange(r)
    	if handled {
    		return
    	}
    	return f.spliceToFile(r)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. src/os/file_unix.go

    	dirinfo     atomic.Pointer[dirInfo] // nil unless directory being read
    	nonblock    bool                    // whether we set nonblocking mode
    	stdoutOrErr bool                    // whether this is stdout or stderr
    	appendMode  bool                    // whether file is opened for appending
    }
    
    // Fd returns the integer Unix file descriptor referencing the open file.
    // If f is closed, the file descriptor becomes invalid.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. src/os/file_windows.go

    // to close the wrong file descriptor.
    type file struct {
    	pfd        poll.FD
    	name       string
    	dirinfo    atomic.Pointer[dirInfo] // nil unless directory being read
    	appendMode bool                    // whether file is opened for appending
    }
    
    // Fd returns the Windows handle referencing the open file.
    // If f is closed, the file descriptor becomes invalid.
    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/os/file.go

    //
    // If file was opened with the O_APPEND flag, WriteAt returns an error.
    func (f *File) WriteAt(b []byte, off int64) (n int, err error) {
    	if err := f.checkValid("write"); err != nil {
    		return 0, err
    	}
    	if f.appendMode {
    		return 0, errWriteAtInAppendMode
    	}
    
    	if off < 0 {
    		return 0, &PathError{Op: "writeat", Path: f.name, Err: errors.New("negative offset")}
    	}
    
    	for len(b) > 0 {
    		m, e := f.pwrite(b, off)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  6. src/os/file_plan9.go

    // to close the wrong file descriptor.
    type file struct {
    	fdmu       poll.FDMutex
    	fd         int
    	name       string
    	dirinfo    atomic.Pointer[dirInfo] // nil unless directory being read
    	appendMode bool                    // whether file is opened for appending
    }
    
    // Fd returns the integer Plan 9 file descriptor referencing the open file.
    // If f is closed, the file descriptor becomes invalid.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top