Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 76 for newScanner (0.19 sec)

  1. src/cmd/compile/internal/ssa/testdata/hist.gdb-opt.nexts

    64:		var reader io.Reader = strings.NewReader(cannedInput) //gdb-dbg=(hist/A) // TODO cannedInput/A is missing if this code is in 'test' instead of 'main'
    65:		if len(os.Args) > 1 {
    73:		scanner := bufio.NewScanner(reader)
    74:		for scanner.Scan() { //gdb-opt=(scanner/A)
    scanner = (bufio.Scanner *) <A>
    75:			s := scanner.Text()
    76:			i, err := strconv.ParseInt(s, 10, 64)
    77:			if err != nil { //gdb-dbg=(i) //gdb-opt=(err,hist,i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 04 20:41:52 UTC 2019
    - 4.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/pgo_devirtualize_test.go

    		t.Fatalf("error starting go test: %v", err)
    	}
    
    	got := make(map[devirtualization]struct{})
    
    	devirtualizedLine := regexp.MustCompile(`(.*): PGO devirtualizing \w+ call .* to (.*)`)
    
    	scanner := bufio.NewScanner(pr)
    	for scanner.Scan() {
    		line := scanner.Text()
    		t.Logf("child: %s", line)
    
    		m := devirtualizedLine.FindStringSubmatch(line)
    		if m == nil {
    			continue
    		}
    
    		d := devirtualization{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 21:30:35 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/cover/profile.go

    	// Rest of file is in the format
    	//	encoding/base64/base64.go:34.44,37.40 3 1
    	// where the fields are: name.go:line.column,line.column numberOfStatements count
    	files := make(map[string]*Profile)
    	s := bufio.NewScanner(rd)
    	mode := ""
    	for s.Scan() {
    		line := s.Text()
    		if mode == "" {
    			const p = "mode: "
    			if !strings.HasPrefix(line, p) || line == p {
    				return nil, fmt.Errorf("bad mode line: %v", line)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 11 17:02:03 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  4. src/encoding/json/scanner.go

    // before diving into the scanner itself.
    
    import (
    	"strconv"
    	"sync"
    )
    
    // Valid reports whether data is a valid JSON encoding.
    func Valid(data []byte) bool {
    	scan := newScanner()
    	defer freeScanner(scan)
    	return checkValid(data, scan) == nil
    }
    
    // checkValid verifies that data is valid JSON-encoded data.
    // scan is passed in for use by checkValid to avoid an allocation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/podcgroupns.go

    //   - https://www.kernel.org/doc/Documentation/cgroup-v2.txt
    func GetCgroups(procCgroupData bytes.Buffer) ([]Cgroup, error) {
    	reader := bytes.NewReader(procCgroupData.Bytes())
    	var cgroups []Cgroup
    	scanner := bufio.NewScanner(reader)
    
    	for scanner.Scan() {
    		token := scanner.Text()
    		substrings := strings.SplitN(token, ":", 3)
    		if len(substrings) < 3 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/inl_test.go

    	pr, pw := io.Pipe()
    	cmd.Stdout = pw
    	cmd.Stderr = pw
    	cmdErr := make(chan error, 1)
    	go func() {
    		cmdErr <- cmd.Run()
    		pw.Close()
    	}()
    	scanner := bufio.NewScanner(pr)
    	curPkg := ""
    	canInline := regexp.MustCompile(`: can inline ([^ ]*)`)
    	haveInlined := regexp.MustCompile(`: inlining call to ([^ ]*)`)
    	cannotInline := regexp.MustCompile(`: cannot inline ([^ ]*): (.*)`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/helpers_linux.go

    	if err != nil {
    		if os.IsNotExist(err) {
    			// The procsFile does not exist, So no pids attached to this directory
    			return []int{}, nil
    		}
    		return nil, err
    	}
    	defer f.Close()
    
    	s := bufio.NewScanner(f)
    	out := []int{}
    	for s.Scan() {
    		if t := s.Text(); t != "" {
    			pid, err := strconv.Atoi(t)
    			if err != nil {
    				return nil, fmt.Errorf("unexpected line in %v; could not convert to pid: %v", procsFile, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 11:52:28 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/upgrade/common.go

    	}
    
    	cfgYaml, err := configutil.MarshalKubeadmConfigObject(clustercfg, kubeadmapiv1.SchemeGroupVersion)
    	if err == nil {
    		printer.Fprintln(w, "[upgrade/config] Configuration used:")
    
    		scanner := bufio.NewScanner(bytes.NewReader(cfgYaml))
    		for scanner.Scan() {
    			printer.Fprintf(w, "\t%s\n", scanner.Text())
    		}
    	}
    }
    
    // runPreflightChecks runs the root preflight check
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/apiclient/dryrunclient.go

    	}
    }
    
    // PrintBytesWithLinePrefix prints objBytes to writer w with linePrefix in the beginning of every line
    func PrintBytesWithLinePrefix(w io.Writer, objBytes []byte, linePrefix string) {
    	scanner := bufio.NewScanner(bytes.NewReader(objBytes))
    	for scanner.Scan() {
    		fmt.Fprintf(w, "%s%s\n", linePrefix, scanner.Text())
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 09:49:59 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  10. src/crypto/rsa/pss_test.go

    	// new keys and signature blocks.
    	const newKeyMarker = "START NEW KEY"
    	const newSignatureMarker = "START NEW SIGNATURE"
    
    	values := make(chan string)
    
    	go func() {
    		defer close(values)
    		scanner := bufio.NewScanner(bzip2.NewReader(inFile))
    		var partialValue string
    		lastWasValue := true
    
    		for scanner.Scan() {
    			line := scanner.Text()
    			switch {
    			case len(line) == 0:
    				if len(partialValue) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top