Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 129 for O_WRONLY (0.16 sec)

  1. src/cmd/internal/bootstrap_test/overlaydir_test.go

    			return nil
    		}
    
    		// Otherwise, copy the bytes.
    		src, err := os.Open(srcPath)
    		if err != nil {
    			return err
    		}
    		defer src.Close()
    
    		dst, err := os.OpenFile(dstPath, os.O_WRONLY|os.O_CREATE|os.O_EXCL, perm)
    		if err != nil {
    			return err
    		}
    
    		_, err = io.Copy(dst, src)
    		if closeErr := dst.Close(); err == nil {
    			err = closeErr
    		}
    		return err
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:35:05 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. src/syscall/const_plan9.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package syscall
    
    // Plan 9 Constants
    
    // Open modes
    const (
    	O_RDONLY  = 0
    	O_WRONLY  = 1
    	O_RDWR    = 2
    	O_TRUNC   = 16
    	O_CLOEXEC = 32
    	O_EXCL    = 0x1000
    )
    
    // Bind flags
    const (
    	MORDER  = 0x0003 // mask for bits defining order of mounting
    	MREPL   = 0x0000 // mount replaces object
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 14:05:53 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/copy.go

    	if err != nil {
    		return err
    	}
    
    	sourceFile, err := os.Open(src)
    	if err != nil {
    		return err
    	}
    	defer func() {
    		_ = sourceFile.Close()
    	}()
    
    	destFile, err := os.OpenFile(dest, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, sourceFileInfo.Mode())
    	if err != nil {
    		return err
    	}
    	defer func() {
    		_ = destFile.Close()
    	}()
    
    	_, err = io.Copy(destFile, sourceFile)
    
    	return err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 01:42:57 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. src/cmd/covdata/metamerge.go

    	}
    	defer inf.Close()
    
    	fi, err := inf.Stat()
    	if err != nil {
    		fatal("accessing input meta-data file %s: %v", inpath, err)
    	}
    
    	outf, err := os.OpenFile(outpath, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, fi.Mode())
    	if err != nil {
    		fatal("opening output meta-data file %s: %v", outpath, err)
    	}
    
    	_, err = io.Copy(outf, inf)
    	outf.Close()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_fuzz_mutator_repeat.txt

    var wantFlag = flag.String("want", "", "file containing previous crashing input")
    
    func FuzzRepeat(f *testing.F) {
    	i := 0
    	f.Fuzz(func(t *testing.T, b []byte) {
    		i++
    		if i == 100 {
    			f, err := os.OpenFile("want", os.O_WRONLY|os.O_CREATE|os.O_EXCL, 0666)
    			if err != nil {
    				// Couldn't create the file. Return without crashing, and try
    				// again.
    				i--
    				t.Skip(err)
    			}
    			if _, err := f.Write(b); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/cgotest/overlaydir.go

    			return nil
    		}
    
    		// Otherwise, copy the bytes.
    		src, err := os.Open(srcPath)
    		if err != nil {
    			return err
    		}
    		defer src.Close()
    
    		dst, err := os.OpenFile(dstPath, os.O_WRONLY|os.O_CREATE|os.O_EXCL, perm)
    		if err != nil {
    			return err
    		}
    
    		_, err = io.Copy(dst, src)
    		if closeErr := dst.Close(); err == nil {
    			err = closeErr
    		}
    		return err
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 20:56:09 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. cmd/yamlfmt/yamlfmt.go

    			continue
    		}
    		rootNode, err := fetchYaml(sourceYaml)
    		if err != nil {
    			fmt.Fprintf(os.Stderr, "%s: %v\n", path, err)
    			continue
    		}
    		writer, err := os.OpenFile(path, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0666)
    		if err != nil {
    			fmt.Fprintf(os.Stderr, "%s: %v\n", path, err)
    			continue
    		}
    		err = streamYaml(writer, indent, rootNode)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 17 06:23:22 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. src/internal/coverage/test/counter_test.go

    		// Open a counter data file in preparation for emitting data.
    		d := t.TempDir()
    		cfpath := filepath.Join(d, fmt.Sprintf("covcounters.hash.0.%d", kf))
    		of, err := os.OpenFile(cfpath, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0666)
    		if err != nil {
    			t.Fatalf("opening covcounters: %v", err)
    		}
    
    		// Perform the encode and write.
    		cdfw := encodecounter.NewCoverageDataWriter(of, flav)
    		if cdfw == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 26 12:44:34 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/dependencies/stub.go

    func (s *DependenciesStub) writeAllToDryRunPath() error {
    	path := DryRunFilePath.Get()
    	if path != "" {
    		// Print the input into the given output file.
    		f, err := os.OpenFile(path, os.O_CREATE|os.O_WRONLY, 0o644)
    		if err != nil {
    			return fmt.Errorf("unable to open dry run output file %v: %v", path, err)
    		}
    
    		defer f.Close()
    
    		for _, line := range s.ExecutedAll {
    			_, err := f.WriteString(line + "\n")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. src/runtime/export_unix_test.go

    	b := byte(0)
    	write(uintptr(waitForSigusr1.wrpipe), noescape(unsafe.Pointer(&b)), 1)
    	return true
    }
    
    // SendSigusr1 sends SIGUSR1 to mp.
    func SendSigusr1(mp *M) {
    	signalM(mp, _SIGUSR1)
    }
    
    const (
    	O_WRONLY = _O_WRONLY
    	O_CREAT  = _O_CREAT
    	O_TRUNC  = _O_TRUNC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 20 21:27:51 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top