Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for O_WRONLY (0.12 sec)

  1. src/crypto/tls/generate_cert.go

    	}
    	if err := certOut.Close(); err != nil {
    		log.Fatalf("Error closing cert.pem: %v", err)
    	}
    	log.Print("wrote cert.pem\n")
    
    	keyOut, err := os.OpenFile("key.pem", os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0600)
    	if err != nil {
    		log.Fatalf("Failed to open key.pem for writing: %v", err)
    	}
    	privBytes, err := x509.MarshalPKCS8PrivateKey(priv)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 08 15:22:02 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/threshold_notifier_linux.go

    	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 {
    		return nil, err
    	}
    	defer unix.Close(controlfd)
    	eventfd, err = unix.Eventfd(0, unix.EFD_CLOEXEC)
    	if err != nil {
    		return nil, err
    	}
    	if eventfd < 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 01 21:59:54 UTC 2022
    - 5.8K 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/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)
  5. 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)
  6. src/main/java/jcifs/smb1/smb1/SmbNamedPipe.java

         */
    
        public static final int PIPE_TYPE_RDONLY = O_RDONLY;
    
        /**
         * The pipe should be opened only for writing.
         */
    
        public static final int PIPE_TYPE_WRONLY = O_WRONLY;
    
        /**
         * The pipe should be opened for both reading and writing.
         */
    
        public static final int PIPE_TYPE_RDWR   = O_RDWR;
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 7.3K bytes
    - Viewed (0)
  7. src/os/example_test.go

    	if err := f.Close(); err != nil {
    		log.Fatal(err)
    	}
    }
    
    func ExampleOpenFile_append() {
    	// If the file doesn't exist, create it, or append to the file
    	f, err := os.OpenFile("access.log", os.O_APPEND|os.O_CREATE|os.O_WRONLY, 0644)
    	if err != nil {
    		log.Fatal(err)
    	}
    	if _, err := f.Write([]byte("appended some data\n")); err != nil {
    		f.Close() // ignore error; Write error takes precedence
    		log.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 17:35:49 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. internal/logger/logrotate.go

    			return nil, fmt.Errorf("Failed to create log file: %w", err)
    		}
    	}
    
    	go w.listen()
    
    	return w, nil
    }
    
    func newFile(path string) (*os.File, error) {
    	return os.OpenFile(path, os.O_WRONLY|os.O_TRUNC|os.O_CREATE|os.O_SYNC, 0o666)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. src/os/dir.go

    		r, err := fsys.Open(path)
    		if err != nil {
    			return err
    		}
    		defer r.Close()
    		info, err := r.Stat()
    		if err != nil {
    			return err
    		}
    		w, err := OpenFile(newPath, O_CREATE|O_TRUNC|O_WRONLY, 0666|info.Mode()&0777)
    		if err != nil {
    			return err
    		}
    
    		if _, err := io.Copy(w, r); err != nil {
    			w.Close()
    			return &PathError{Op: "Copy", Path: newPath, Err: err}
    		}
    		return w.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. src/main/java/jcifs/SmbConstants.java

         * represents is a communications device.
         */
        static final int TYPE_COMM = 0x40;
    
        /* open flags */
    
        static final int O_RDONLY = 0x01;
        static final int O_WRONLY = 0x02;
        static final int O_RDWR = 0x03;
        static final int O_APPEND = 0x04;
    
        // Open Function Encoding
        // create if the file does not exist
        static final int O_CREAT = 0x0010;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.9K bytes
    - Viewed (0)
Back to top