Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for parseBean (0.1 sec)

  1. maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

            }
            if (rawType.isArray()) {
                return parseArray(parser, TypeArguments.get(toType, 0));
            }
            return parseBean(parser, toType, rawType);
        }
    
        /**
         * Parses a sequence of XML elements and converts them to the appropriate {@link Properties} type.
         *
         * @param parser The XML parser
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/profile/legacy_profile.go

    				Location: sloc,
    			})
    	}
    	// Reached the end without finding the EOD marker.
    	return b, locs, nil
    }
    
    // parseHeap parses a heapz legacy or a growthz profile and
    // returns a newly populated Profile.
    func parseHeap(b []byte) (p *Profile, err error) {
    	s := bufio.NewScanner(bytes.NewBuffer(b))
    	if !s.Scan() {
    		if err := s.Err(); err != nil {
    			return nil, err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 32.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    var errConcatProfile = fmt.Errorf("concatenated profiles detected")
    
    func parseLegacy(data []byte) (*Profile, error) {
    	parsers := []func([]byte) (*Profile, error){
    		parseCPU,
    		parseHeap,
    		parseGoCount, // goroutine, threadcreate
    		parseThread,
    		parseContention,
    		parseJavaProfile,
    	}
    
    	for _, parser := range parsers {
    		p, err := parser(data)
    		if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
Back to top