Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 284 for proc (0.04 sec)

  1. src/cmd/compile/internal/syntax/scanner_test.go

    			nlsemi = true
    
    		case _Operator, _AssignOp, _IncOp:
    			if got.op != want.op {
    				t.Errorf("%s: got op %s; want %s", src, got.op, want.op)
    				continue
    			}
    			if got.prec != want.prec {
    				t.Errorf("%s: got prec %d; want %d", src, got.prec, want.prec)
    				continue
    			}
    			nlsemi = want.tok == _IncOp
    
    		case _Rparen, _Rbrack, _Rbrace, _Break, _Continue, _Fallthrough, _Return:
    			nlsemi = true
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  2. src/internal/profile/graph.go

    // set of corresponding nodes (one per location.Line).
    func CreateNodes(prof *Profile, o *Options) (Nodes, locationMap) {
    	locations := locationMap{make([]Nodes, len(prof.Location)+1), make(map[uint64]Nodes)}
    	nm := make(NodeMap, len(prof.Location))
    	for _, l := range prof.Location {
    		lines := l.Line
    		if len(lines) == 0 {
    			lines = []Line{{}} // Create empty line to include location info.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 20:59:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    func New(prof *profile.Profile, o *Options) *Graph {
    	if o.CallTree {
    		return newTree(prof, o)
    	}
    	g, _ := newGraph(prof, o)
    	return g
    }
    
    // newGraph computes a graph from a profile. It returns the graph, and
    // a map from the profile location indices to the corresponding graph
    // nodes.
    func newGraph(prof *profile.Profile, o *Options) (*Graph, map[uint64]Nodes) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/obj6.go

    	obj.Nopout(p)
    }
    
    func rewriteToPcrel(ctxt *obj.Link, p *obj.Prog, newprog obj.ProgAlloc) {
    	// RegTo2 is set on the instructions we insert here so they don't get
    	// processed twice.
    	if p.RegTo2 != 0 {
    		return
    	}
    	if p.As == obj.ATEXT || p.As == obj.AFUNCDATA || p.As == obj.ACALL || p.As == obj.ARET || p.As == obj.AJMP {
    		return
    	}
    	// Any Prog (aside from the above special cases) with an Addr with Name ==
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/mips/obj0.go

    	var mov, add obj.As
    	if c.ctxt.Arch.Family == sys.MIPS64 {
    		add = AADDV
    		mov = AMOVV
    	} else {
    		add = AADDU
    		mov = AMOVW
    	}
    
    	var q *obj.Prog
    	var q1 *obj.Prog
    	autosize := int32(0)
    	var p1 *obj.Prog
    	var p2 *obj.Prog
    	for p := c.cursym.Func().Text; p != nil; p = p.Link {
    		o := p.As
    		switch o {
    		case obj.ATEXT:
    			autosize = int32(textstksiz)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/integtests/JavaProjectIntegrationTest.groovy

                public void test() {}
            }
            """
    
            when:
            executer.withTasks("build").run()
    
            then:
            testFile("build/resources/main/prod.resource").assertExists()
            testFile("build/classes/java/main/prod.resource").assertDoesNotExist()
    
            testFile("build/resources/test/test.resource").assertExists()
            testFile("build/classes/java/test/test.resource").assertDoesNotExist()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. src/cmd/trace/pprof.go

    				Line: int(frame.Line),
    			})
    			i++
    			// Cut this off at pprofMaxStack because that's as far
    			// as our deduplication goes.
    			return i < pprofMaxStack
    		})
    		prof = append(prof, rec)
    	}
    	return prof
    }
    
    // pcsForStack extracts the first pprofMaxStack PCs from stack into pcs.
    func pcsForStack(stack trace.Stack, pcs *[pprofMaxStack]uint64) {
    	i := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/obj7.go

    	ASBCS:  true,
    	ASBCSW: true,
    	AADC:   true,
    	AADCW:  true,
    	AADCS:  true,
    	AADCSW: true,
    	AFMOVD: true,
    	AFMOVS: true,
    	AMSR:   true,
    }
    
    func (c *ctxt7) stacksplit(p *obj.Prog, framesize int32) *obj.Prog {
    	if c.ctxt.Flag_maymorestack != "" {
    		p = c.cursym.Func().SpillRegisterArgs(p, c.newprog)
    
    		// Save LR and make room for FP, REGCTXT. Leave room
    		// for caller's saved FP.
    		const frameSize = 32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  9. src/math/big/nat_test.go

    }
    
    func TestMulRangeN(t *testing.T) {
    	for i, r := range mulRangesN {
    		prod := string(nat(nil).mulRange(r.a, r.b).utoa(10))
    		if prod != r.prod {
    			t.Errorf("#%d: got %s; want %s", i, prod, r.prod)
    		}
    	}
    }
    
    // allocBytes returns the number of bytes allocated by invoking f.
    func allocBytes(f func()) uint64 {
    	var stats runtime.MemStats
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. pilot/pkg/config/kube/crdclient/client_test.go

    		if selectedLabels == nil || reflect.DeepEqual(selectedLabels, labels[1]) {
    			expectedCanary = append(expectedCanary, TranslateObject(obj, gvk.ServiceEntry, ""))
    		}
    		// prod revision should receive only global objects and objects with the prod revision
    		if selectedLabels == nil || reflect.DeepEqual(selectedLabels, labels[2]) {
    			expectedProd = append(expectedProd, TranslateObject(obj, gvk.ServiceEntry, ""))
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top