Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 447 for writeTime (0.47 sec)

  1. build-logic/kotlin-dsl/src/main/kotlin/gradlebuild/kotlindsl/generator/tasks/CodeGenerationTask.kt

        @Suppress("unused")
        @TaskAction
        fun run() {
            outputDir.get().asFile.apply {
                recreate()
                writeFiles()
            }
        }
    
        protected
        fun File.writeFile(relativePath: String, text: String) {
            resolve(relativePath).apply {
                parentFile.mkdirs()
                writeText(text)
            }
        }
    
        private
        fun File.recreate() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:26 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/syscall/mkasm.go

    			if goos == "openbsd" && arch == "ppc64" {
    				fmt.Fprintf(&out, "\tCALL\t%s(SB)\n", fn)
    				fmt.Fprintf(&out, "\tRET\n")
    			} else {
    				fmt.Fprintf(&out, "\tJMP\t%s(SB)\n", fn)
    			}
    		}
    	}
    	err = os.WriteFile(fmt.Sprintf("zsyscall_%s_%s.s", goos, arch), out.Bytes(), 0644)
    	if err != nil {
    		log.Fatalf("can't write syscall file: %s", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/config/joinconfiguration_test.go

    				  tlsBootstrapToken: abcdef.0123456789abcdef
    			`),
    		},
    	}
    
    	for _, rt := range tests {
    		t.Run(rt.name, func(t2 *testing.T) {
    			cfgPath := filepath.Join(tmpdir, rt.name)
    			err := os.WriteFile(cfgPath, []byte(rt.fileContents), 0644)
    			if err != nil {
    				t.Errorf("Couldn't create file: %v", err)
    				return
    			}
    
    			opts := LoadOrDefaultConfigurationOptions{
    				SkipCRIDetect: true,
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 13 09:17:03 UTC 2023
    - 2.4K 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