Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 339 for Fname (0.03 sec)

  1. misc/ios/detect.go

    			files = append(files, string(line))
    		}
    	}
    	return files
    }
    
    func parseMobileProvision(fname string) *exec.Cmd {
    	return exec.Command("security", "cms", "-D", "-i", string(fname))
    }
    
    func plistExtract(fname string, path string) ([]byte, error) {
    	out, err := exec.Command("/usr/libexec/PlistBuddy", "-c", "Print "+path, fname).CombinedOutput()
    	if err != nil {
    		return nil, err
    	}
    	return bytes.TrimSpace(out), nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:30 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/webhtml.go

    	// Load specified file.
    	loadFile := func(fname string) string {
    		data, err := embeddedFiles.ReadFile(fname)
    		if err != nil {
    			fmt.Fprintf(os.Stderr, "internal/driver: embedded file %q not found\n",
    				fname)
    			os.Exit(1)
    		}
    		return string(data)
    	}
    	loadCSS := func(fname string) string {
    		return `<style type="text/css">` + "\n" + loadFile(fname) + `</style>` + "\n"
    	}
    	loadJS := func(fname string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/CppMultiProjectGeneratorTask.groovy

                def subproject = subprojects[chosenSubprojectNumber]
                def fName = "project${subproject.subprojectNumber}lib${chosenSourceFileNumber}"
                cppFile = "${subproject.name}/src/main/cpp/${fName}.cpp"
                headerFile = "${subproject.name}/src/main/public/${fName}.h"
            }
    
            """
                defaults {
                    gradle-args = ["--max-workers=12"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/pkginit/initAsanGlobals.go

    	i32 := types.Types[types.TINT32]
    	fname := typecheck.Lookup
    	nxp := src.NoXPos
    	nfield := types.NewField
    	asanGlobal := types.NewStruct([]*types.Field{
    		nfield(nxp, fname("beg"), up),
    		nfield(nxp, fname("size"), up),
    		nfield(nxp, fname("sizeWithRedzone"), up),
    		nfield(nxp, fname("name"), up),
    		nfield(nxp, fname("moduleName"), up),
    		nfield(nxp, fname("hasDynamicInit"), up),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:36:24 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/ConcurrencyTest.java

        static final Logger log = LoggerFactory.getLogger(ConcurrencyTest.class);
        private ExecutorService executor;
    
    
        public ConcurrencyTest ( String name, Map<String, String> properties ) {
            super(name, properties);
        }
    
    
        @Parameters ( name = "{0}" )
        public static Collection<Object> configs () {
            return getConfigs("smb1", "noNTStatus", "noNTSmbs", "smb2", "smb30", "smb31");
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:40:50 UTC 2021
    - 17.6K bytes
    - Viewed (0)
  6. cmd/admin-handler-utils.go

    func exportError(ctx context.Context, err error, fname, entity string) APIError {
    	if entity == "" {
    		return toAPIError(ctx, fmt.Errorf("error exporting %s with: %w", fname, err))
    	}
    	return toAPIError(ctx, fmt.Errorf("error exporting %s from %s with: %w", entity, fname, err))
    }
    
    // wraps import error for more context
    func importError(ctx context.Context, err error, fname, entity string) APIError {
    	if entity == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. src/runtime/race/testdata/io_test.go

    	"path/filepath"
    	"sync"
    	"testing"
    	"time"
    )
    
    func TestNoRaceIOFile(t *testing.T) {
    	x := 0
    	path := t.TempDir()
    	fname := filepath.Join(path, "data")
    	go func() {
    		x = 42
    		f, _ := os.Create(fname)
    		f.Write([]byte("done"))
    		f.Close()
    	}()
    	for {
    		f, err := os.Open(fname)
    		if err != nil {
    			time.Sleep(1e6)
    			continue
    		}
    		buf := make([]byte, 100)
    		count, err := f.Read(buf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 08 07:33:58 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/testdata/flowgraph_generator1.go

    		for i := 0; i < nconfigs; i++ {
    			fname := fnameBase + fmt.Sprintf("%b", i)
    			bs, k := strings2blocks(split, fname, i)
    			fmt.Printf("%s", makeFunctionFromFlowGraph(bs, fname))
    			s += `
    		{f:` + fname + `, maxin:` + fmt.Sprintf("%d", 1<<k) + `, blocks:` + fmtBlocks(bs) + `},`
    		}
    
    	}
    	s += `}
    `
    	// write types for name+array tables.
    	fmt.Printf("%s",
    		`
    type blo struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  9. src/internal/coverage/cformat/format.go

    // Counter values will be accumulated where appropriate.
    func (fm *Formatter) AddUnit(file string, fname string, isfnlit bool, unit coverage.CoverableUnit, count uint32) {
    	if fm.p == nil {
    		panic("AddUnit invoked before SetPackage")
    	}
    	fkey := fnfile{file: file, fname: fname, lit: isfnlit}
    	idx, ok := fm.p.funcTable[fkey]
    	if !ok {
    		idx = uint32(len(fm.p.funcs))
    		fm.p.funcs = append(fm.p.funcs, fkey)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/BazelFileContentGenerator.groovy

            "outname": attr.string(),
        },
        outputs = {"out": "%{name}.java"},
        implementation = _impl,
    )
    
    def junit_tests(name, srcs, **kwargs):
        s_name = name.replace("-", "_") + "TestSuite"
        _GenSuite(
            name = s_name,
            srcs = srcs,
            outname = s_name,
        )
        java_test(
            name = name,
            test_class = s_name,
            srcs = srcs + [":" + s_name],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top