Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 447 for writeFiles (0.16 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GFileUtils.java

                return "Unable to read file '" + file + "' due to: " + e.toString();
            }
        }
    
        public static void writeFile(String content, File destination) {
            writeFile(content, destination, Charset.defaultCharset().name());
        }
    
        public static void writeFile(String content, File destination, String encoding) {
            try {
                FileUtils.writeStringToFile(destination, content, encoding);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/teststdio/stdio_test.go

    	if err := cgotest.OverlayDir(modRoot, "testdata"); err != nil {
    		log.Panic(err)
    	}
    	if err := os.Chdir(modRoot); err != nil {
    		log.Panic(err)
    	}
    	os.Setenv("PWD", modRoot)
    	if err := os.WriteFile("go.mod", []byte("module cgostdio\n"), 0666); err != nil {
    		log.Panic(err)
    	}
    
    	return m.Run()
    }
    
    // TestTestRun runs a cgo test that doesn't depend on non-standard libraries.
    func TestTestRun(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 20:56:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. test/const7.go

    	var buf bytes.Buffer
    
    	fmt.Fprintf(&buf,
    		"package %s; const _ = 0b%s // %d bits",
    		name, strings.Repeat("1", length), length,
    	)
    
    	filename := filepath.Join(dir, fmt.Sprintf("%s.go", name))
    	if err := os.WriteFile(filename, buf.Bytes(), 0666); err != nil {
    		log.Fatal(err)
    	}
    
    	cmd := exec.Command("go", "tool", "compile", "-p=p", filename)
    	cmd.Dir = dir
    	output, err := cmd.CombinedOutput()
    
    	if msg == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. test/fixedbugs/issue21576.go

      c <- 1
    }
    `
    
    func main() {
    	dir, err := ioutil.TempDir("", "21576")
    	if err != nil {
    		log.Fatal(err)
    	}
    	defer os.RemoveAll(dir)
    
    	file := filepath.Join(dir, "main.go")
    	if err := ioutil.WriteFile(file, []byte(prog), 0655); err != nil {
    		log.Fatalf("Write error %v", err)
    	}
    
    	// Using a timeout of 1 minute in case other factors might slow
    	// down the start of "go run". See https://golang.org/issue/34836.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. src/internal/goos/gengoos.go

    		for _, goos := range gooses {
    			value := 0
    			if goos == target {
    				value = 1
    			}
    			fmt.Fprintf(&buf, "const Is%s = %d\n", strings.Title(goos), value)
    		}
    		err := os.WriteFile("zgoos_"+target+".go", buf.Bytes(), 0666)
    		if err != nil {
    			log.Fatal(err)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 15 21:31:23 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  6. src/math/bits/make_tables.go

    	gen(buf, "ntz8tab", ntz8)
    	gen(buf, "pop8tab", pop8)
    	gen(buf, "rev8tab", rev8)
    	gen(buf, "len8tab", len8)
    
    	out, err := format.Source(buf.Bytes())
    	if err != nil {
    		log.Fatal(err)
    	}
    
    	err = os.WriteFile("bits_tables.go", out, 0666)
    	if err != nil {
    		log.Fatal(err)
    	}
    }
    
    func gen(w io.Writer, name string, f func(uint8) uint8) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. cmd/genkubedocs/postprocessing.go

    	filename := filepath.Join(dir, basename)
    
    	markdownBytes, err := os.ReadFile(filename)
    	if err != nil {
    		return err
    	}
    
    	processedMarkDown := processor(string(markdownBytes))
    
    	return os.WriteFile(filename, []byte(processedMarkDown), 0644)
    }
    
    // cleanupForInclude parts of markdown that will make difficult to use it as include in the website:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 01 05:59:41 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  8. subprojects/core/src/testFixtures/groovy/org/gradle/cache/internal/DefaultFileLockManagerTestHelper.groovy

        }
    
        static void unlockUncleanly(File target) {
            def lock = createDefaultFileLock(target)
            try {
                lock.writeFile {
                    throw new AnException()
                }
            } catch (AnException e) {
                lock.close()
            }
            lock = createDefaultFileLock(target)
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:52 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. src/os/os_test.go

    	defer chtmpdir(t)()
    	const f = "append.txt"
    	s := writeFile(t, f, O_CREATE|O_TRUNC|O_RDWR, "new")
    	if s != "new" {
    		t.Fatalf("writeFile: have %q want %q", s, "new")
    	}
    	s = writeFile(t, f, O_APPEND|O_RDWR, "|append")
    	if s != "new|append" {
    		t.Fatalf("writeFile: have %q want %q", s, "new|append")
    	}
    	s = writeFile(t, f, O_CREATE|O_APPEND|O_RDWR, "|append")
    	if s != "new|append|append" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/main/java/org/gradle/util/GFileUtils.java

                return "Unable to read file '" + file + "' due to: " + e.toString();
            }
        }
    
        public static void writeFile(String content, File destination) {
            writeFile(content, destination, Charset.defaultCharset().name());
        }
    
        public static void writeFile(String content, File destination, String encoding) {
            logDeprecation();
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top