Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 241 for proc (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/DynamicObjectIntegrationTest.groovy

                    @Input
                    def String prop
                    void doStuff(Action<Task> action) { action.execute(this) }
                }
                tasks.withType(GroovyTask) { conventionMapping.prop = { '[default]' } }
                task test(type: GroovyTask)
                assert test.prop == '[default]'
                test {
                    description 'does something'
                    prop 'value'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/issues0.go

    // Issue #26234: Make various field/method lookup errors easier to read by matching cmd/compile's output
    func issue26234a(f *syn.Prog) {
    	// The error message below should refer to the actual package name (syntax)
    	// not the local package name (syn).
    	f.foo /* ERROR "f.foo undefined (type *syntax.Prog has no field or method foo)" */
    }
    
    type T struct {
    	x int
    	E1
    	E2
    }
    
    type E1 struct{ f int }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. src/testing/benchmark.go

    	if len(*matchBenchmarks) == 0 {
    		return true
    	}
    	// Collect matching benchmarks and determine longest name.
    	maxprocs := 1
    	for _, procs := range cpuList {
    		if procs > maxprocs {
    			maxprocs = procs
    		}
    	}
    	ctx := &benchContext{
    		match:  newMatcher(matchString, *matchBenchmarks, "-test.bench", *skip),
    		extLen: len(benchmarkName("", maxprocs)),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm/obj5.go

    						ctxt.Diag("invalid auto-SPWRITE in non-assembly")
    						ctxt.DiagFlush()
    						log.Fatalf("bad SPWRITE")
    					}
    				}
    			}
    		}
    	}
    }
    
    func (c *ctxt5) stacksplit(p *obj.Prog, framesize int32) *obj.Prog {
    	if c.ctxt.Flag_maymorestack != "" {
    		// Save LR and make room for REGCTXT.
    		const frameSize = 8
    		// MOVW.W R14,$-8(SP)
    		p = obj.Appendp(p, c.newprog)
    		p.As = AMOVW
    		p.Scond |= C_WBIT
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 21.4K bytes
    - Viewed (0)
Back to top