Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 145 for O_RDONLY (0.12 sec)

  1. src/runtime/defs_aix.go

    	_SEGV_MAPERR = C.SEGV_MAPERR
    	_SEGV_ACCERR = C.SEGV_ACCERR
    
    	_ITIMER_REAL    = C.ITIMER_REAL
    	_ITIMER_VIRTUAL = C.ITIMER_VIRTUAL
    	_ITIMER_PROF    = C.ITIMER_PROF
    
    	_O_RDONLY   = C.O_RDONLY
    	_O_WRONLY   = C.O_WRONLY
    	_O_NONBLOCK = C.O_NONBLOCK
    	_O_CREAT    = C.O_CREAT
    	_O_TRUNC    = C.O_TRUNC
    
    	_SS_DISABLE  = C.SS_DISABLE
    	_SI_USER     = C.SI_USER
    	_SIG_BLOCK   = C.SIG_BLOCK
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 20 21:27:51 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. pkg/volume/util/fsquota/project.go

    	// move them over the originals
    	fProjects, err := os.OpenFile(projectsFile, os.O_RDONLY|os.O_CREATE, 0644)
    	if err != nil {
    		err = fmt.Errorf("unable to open %s: %v", projectsFile, err)
    		return nil, nil, err
    	}
    	fProjid, err := os.OpenFile(projidFile, os.O_RDONLY|os.O_CREATE, 0644)
    	if err == nil {
    		// Check once more, to ensure nothing got changed out from under us
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem.cc

    static void NewRandomAccessFile(const TF_Filesystem* filesystem,
                                    const char* path, TF_RandomAccessFile* file,
                                    TF_Status* status) {
      int fd = open(path, O_RDONLY);
      if (fd < 0) {
        TF_SetStatusFromIOError(status, errno, path);
        return;
      }
    
      struct stat st;
      fstat(fd, &st);
      if (S_ISDIR(st.st_mode)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 24 20:08:23 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. src/go/printer/testdata/linebreaks.input

    		"	godoc -http=:6060\n")
    	flag.PrintDefaults()
    	os.Exit(2)
    }
    
    func TestReader(t *testing.T) {
    testLoop:
    	for i, test := range untarTests {
    		f, err := os.Open(test.file, os.O_RDONLY, 0444)
    		if err != nil {
    			t.Errorf("test %d: Unexpected error: %v", i, err)
    			continue
    		}
    		tr := NewReader(f)
    		for j, header := range test.headers {
    			hdr, err := tr.Next()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 11 22:03:18 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  5. src/os/removeall_at.go

    // The contents of this file are not relevant for test caching.
    func openDirAt(dirfd int, name string) (*File, error) {
    	var r int
    	for {
    		var e error
    		r, e = unix.Openat(dirfd, name, O_RDONLY|syscall.O_CLOEXEC|syscall.O_DIRECTORY|syscall.O_NOFOLLOW, 0)
    		if e == nil {
    			break
    		}
    
    		// See comment in openFileNolog.
    		if e == syscall.EINTR {
    			continue
    		}
    
    		return nil, e
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/threshold_notifier_linux.go

    		return &disabledThresholdNotifier{}, nil
    	}
    
    	var watchfd, eventfd, epfd, controlfd int
    	var err error
    	watchfd, err = unix.Open(fmt.Sprintf("%s/%s", path, attribute), unix.O_RDONLY|unix.O_CLOEXEC, 0)
    	if err != nil {
    		return nil, err
    	}
    	defer unix.Close(watchfd)
    	controlfd, err = unix.Open(fmt.Sprintf("%s/cgroup.event_control", path), unix.O_WRONLY|unix.O_CLOEXEC, 0)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 01 21:59:54 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  7. src/syscall/syscall_js.go

    		}
    	}
    	return "signal " + itoa.Itoa(int(s))
    }
    
    var signals = [...]string{}
    
    // File system
    
    const (
    	Stdin  = 0
    	Stdout = 1
    	Stderr = 2
    )
    
    const (
    	O_RDONLY = 0
    	O_WRONLY = 1
    	O_RDWR   = 2
    
    	O_CREAT  = 0100
    	O_CREATE = O_CREAT
    	O_TRUNC  = 01000
    	O_APPEND = 02000
    	O_EXCL   = 0200
    	O_SYNC   = 010000
    
    	O_CLOEXEC = 0
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. src/runtime/os_openbsd.go

    func osinit() {
    	ncpu = getncpu()
    	physPageSize = getPageSize()
    }
    
    var urandom_dev = []byte("/dev/urandom\x00")
    
    //go:nosplit
    func readRandom(r []byte) int {
    	fd := open(&urandom_dev[0], 0 /* O_RDONLY */, 0)
    	n := read(fd, unsafe.Pointer(&r[0]), int32(len(r)))
    	closefd(fd)
    	return int(n)
    }
    
    func goenvs() {
    	goenvs_unix()
    }
    
    // Called to initialize a new m (including the bootstrap m).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbFileInputStream.java

     *
     * @param file An <code>SmbFile</code> specifying the file to read from
     */
    
        public SmbFileInputStream( SmbFile file ) throws SmbException, MalformedURLException, UnknownHostException {
            this( file, SmbFile.O_RDONLY );
        }
    
        SmbFileInputStream( SmbFile file, int openFlags ) throws SmbException, MalformedURLException, UnknownHostException {
            this.file = file;
            this.openFlags = openFlags & 0xFFFF;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 7.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/lockedfile/lockedfile.go

    	})
    
    	return f, nil
    }
    
    // Open is like os.Open, but returns a read-locked file.
    func Open(name string) (*File, error) {
    	return OpenFile(name, os.O_RDONLY, 0)
    }
    
    // Create is like os.Create, but returns a write-locked file.
    func Create(name string) (*File, error) {
    	return OpenFile(name, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0666)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 5.1K bytes
    - Viewed (0)
Back to top