Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 172 for O_WRONLY (0.12 sec)

  1. src/go/printer/testdata/expressions.golden

    	_ = a + t0.x
    	_ = a + t0.x + t1.x*t2.x
    	_ = a + b + c + d + e + 2*3
    	_ = a + b + c + 2*3 + d + e
    	_ = (a + b + c) * 2
    	_ = a - b + c - d + (a + b + c) + d&e
    	_ = under_bar - 1
    	_ = Open(dpath+"/file", O_WRONLY|O_CREAT, 0666)
    	_ = int(c0&_Mask4)<<18 | int(c1&_Maskx)<<12 | int(c2&_Maskx)<<6 | int(c3&_Maskx)
    
    	// test case for issue 8021
    	// want:
    	//  ([]bool{})[([]int{})[((1)+(((1)+((((1)*(((1)+(1))+(1)))+(1))*(1)))+(1)))]]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  2. src/go/printer/testdata/expressions.raw

    	_ = a + t0.x
    	_ = a + t0.x + t1.x*t2.x
    	_ = a + b + c + d + e + 2*3
    	_ = a + b + c + 2*3 + d + e
    	_ = (a + b + c) * 2
    	_ = a - b + c - d + (a + b + c) + d&e
    	_ = under_bar - 1
    	_ = Open(dpath+"/file", O_WRONLY|O_CREAT, 0666)
    	_ = int(c0&_Mask4)<<18 | int(c1&_Maskx)<<12 | int(c2&_Maskx)<<6 | int(c3&_Maskx)
    
    	// test case for issue 8021
    	// want:
    	//  ([]bool{})[([]int{})[((1)+(((1)+((((1)*(((1)+(1))+(1)))+(1))*(1)))+(1)))]]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.4K bytes
    - Viewed (0)
  3. src/crypto/tls/example_test.go

    		Rand: zeroSource{}, // for example only; don't do this.
    	}
    	server.StartTLS()
    	defer server.Close()
    
    	// Typically the log would go to an open file:
    	// w, err := os.OpenFile("tls-secrets.txt", os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0600)
    	w := os.Stdout
    
    	client := &http.Client{
    		Transport: &http.Transport{
    			TLSClientConfig: &tls.Config{
    				KeyLogWriter: w,
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. src/net/splice_linux_test.go

    	actualSize := tc.totalSize
    	if tc.limitReadSize > 0 {
    		if tc.limitReadSize < actualSize {
    			actualSize = tc.limitReadSize
    		}
    	}
    
    	f, err := os.OpenFile(os.DevNull, os.O_WRONLY, 0)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer f.Close()
    
    	client, server := spawnTestSocketPair(t, tc.upNet)
    	defer server.Close()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. 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 (
    	F_DUPFD   = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. src/cmd/internal/buildid/buildid_test.go

    		if err != nil {
    			t.Errorf("FindAndHash(%s): %v", f, err)
    			continue
    		}
    		if err := os.WriteFile(tmp, data, 0666); err != nil {
    			t.Error(err)
    			continue
    		}
    		tf, err := os.OpenFile(tmp, os.O_WRONLY, 0)
    		if err != nil {
    			t.Error(err)
    			continue
    		}
    		err = Rewrite(tf, m, newID)
    		err2 := tf.Close()
    		if err != nil {
    			t.Errorf("Rewrite(%s): %v", f, err)
    			continue
    		}
    		if err2 != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. src/os/file.go

    )
    
    // Flags to OpenFile wrapping those of the underlying system. Not all
    // flags may be implemented on a given system.
    const (
    	// Exactly one of O_RDONLY, O_WRONLY, or O_RDWR must be specified.
    	O_RDONLY int = syscall.O_RDONLY // open the file read-only.
    	O_WRONLY int = syscall.O_WRONLY // open the file write-only.
    	O_RDWR   int = syscall.O_RDWR   // open the file read-write.
    	// The remaining values may be or'ed in to control behavior.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  8. src/syscall/fs_wasip1.go

    		oflags |= OFLAG_TRUNC
    	}
    	if (openmode & O_EXCL) != 0 {
    		oflags |= OFLAG_EXCL
    	}
    
    	var rights rights
    	switch openmode & (O_RDONLY | O_WRONLY | O_RDWR) {
    	case O_RDONLY:
    		rights = fileRights & ^writeRights
    	case O_WRONLY:
    		rights = fileRights & ^readRights
    	case O_RDWR:
    		rights = fileRights
    	}
    
    	var fdflags fdflags
    	if (openmode & O_APPEND) != 0 {
    		fdflags |= FDFLAG_APPEND
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  9. src/os/file_windows.go

    	r, e := syscall.Open(path, flag|syscall.O_CLOEXEC, syscallMode(perm))
    	if e != nil {
    		// We should return EISDIR when we are trying to open a directory with write access.
    		if e == syscall.ERROR_ACCESS_DENIED && (flag&O_WRONLY != 0 || flag&O_RDWR != 0) {
    			pathp, e1 := syscall.UTF16PtrFromString(path)
    			if e1 == nil {
    				var fa syscall.Win32FileAttributeData
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    // output from a "-d=dumpinlfuncprops=..." compilation.
    func genExpected(td string, testcase string) (string, error) {
    	epath := filepath.Join(td, testcase+".expected")
    	outf, err := os.OpenFile(epath, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0644)
    	if err != nil {
    		return "", err
    	}
    	gopath := "testdata/props/" + testcase + ".go"
    	content, err := os.ReadFile(gopath)
    	if err != nil {
    		return "", err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
Back to top