Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 98 for ptrdata (0.16 sec)

  1. pkg/kubelet/certificate/bootstrap/bootstrap.go

    	}
    
    	privateKey, err := keyutil.ParsePrivateKeyPEM(privateKeyData)
    	if err != nil {
    		return nil, fmt.Errorf("invalid private key for certificate request: %v", err)
    	}
    	csrData, err := certutil.MakeCSR(privateKey, subject, nil, nil)
    	if err != nil {
    		return nil, fmt.Errorf("unable to generate certificate request: %v", err)
    	}
    
    	usages := []certificatesv1.KeyUsage{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/obj6.go

    	// we are still in function prologue. We need to fix the
    	// SP data and PCDATA.
    	spfix := obj.Appendp(last, newprog)
    	spfix.As = obj.ANOP
    	spfix.Spadj = -framesize
    
    	pcdata := ctxt.EmitEntryStackMap(cursym, spfix, newprog)
    	spill := ctxt.StartUnsafePoint(pcdata, newprog)
    	pcdata = cursym.Func().SpillRegisterArgs(spill, newprog)
    
    	call := obj.Appendp(pcdata, newprog)
    	call.Pos = cursym.Func().Text.Pos
    	call.As = obj.ACALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  3. pkg/controller/controller_utils_test.go

    func TestActivePodFiltering(t *testing.T) {
    	logger, _ := ktesting.NewTestContext(t)
    	type podData struct {
    		podName  string
    		podPhase v1.PodPhase
    	}
    
    	type test struct {
    		name         string
    		pods         []podData
    		wantPodNames []string
    	}
    
    	tests := []test{
    		{
    			name: "Filters active pods",
    			pods: []podData{
    				{podName: "pod-1", podPhase: v1.PodSucceeded},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  4. src/encoding/pem/pem_test.go

    		if string(x) != test.out1 || string(y) != test.out2 {
    			t.Errorf("#%d got:%+v,%+v want:%s,%s", i, x, y, test.out1, test.out2)
    		}
    	}
    }
    
    func TestDecode(t *testing.T) {
    	result, remainder := Decode([]byte(pemData))
    	if !reflect.DeepEqual(result, certificate) {
    		t.Errorf("#0 got:%#v want:%#v", result, certificate)
    	}
    	result, remainder = Decode(remainder)
    	if !reflect.DeepEqual(result, privateKey) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:56:00 UTC 2022
    - 23.5K bytes
    - Viewed (0)
  5. src/runtime/race.go

    	// Round data segment to page boundaries, because it's used in mmap().
    	start := ^uintptr(0)
    	end := uintptr(0)
    	if start > firstmoduledata.noptrdata {
    		start = firstmoduledata.noptrdata
    	}
    	if start > firstmoduledata.data {
    		start = firstmoduledata.data
    	}
    	if start > firstmoduledata.noptrbss {
    		start = firstmoduledata.noptrbss
    	}
    	if start > firstmoduledata.bss {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. src/runtime/mfinal.go

    	//	func main() {
    	//		runtime.SetFinalizer(Foo, nil)
    	//	}
    	// The relevant segments are: noptrdata, data, bss, noptrbss.
    	// We cannot assume they are in any order or even contiguous,
    	// due to external linking.
    	for datap := &firstmoduledata; datap != nil; datap = datap.next {
    		if datap.noptrdata <= uintptr(p) && uintptr(p) < datap.enoptrdata ||
    			datap.data <= uintptr(p) && uintptr(p) < datap.edata ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. src/cmd/nm/nm_test.go

    	}
    
    	runtimeSyms := map[string]string{
    		"runtime.text":      "T",
    		"runtime.etext":     "T",
    		"runtime.rodata":    "R",
    		"runtime.erodata":   "R",
    		"runtime.epclntab":  "R",
    		"runtime.noptrdata": "D",
    	}
    
    	if runtime.GOOS == "aix" && iscgo {
    		// pclntab is moved to .data section on AIX.
    		runtimeSyms["runtime.epclntab"] = "D"
    	}
    
    	out, err = testenv.Command(t, nmPath(t), exe).CombinedOutput()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 20 23:32:34 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  8. doc/asm.html

    	0x003e 00062 (x.go:5)	ADDQ	$16, SP
    	0x0042 00066 (x.go:5)	RET
    	0x0043 00067 (x.go:5)	NOP
    	0x0043 00067 (x.go:3)	PCDATA	$1, $-1
    	0x0043 00067 (x.go:3)	PCDATA	$0, $-1
    	0x0043 00067 (x.go:3)	CALL	runtime.morestack_noctxt(SB)
    	0x0048 00072 (x.go:3)	JMP	0
    ...
    </pre>
    
    <p>
    The <code>FUNCDATA</code> and <code>PCDATA</code> directives contain information
    for use by the garbage collector; they are introduced by the compiler.
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 19:15:27 UTC 2023
    - 36.3K bytes
    - Viewed (1)
  9. src/runtime/proc_test.go

    	ping <- true // Start ping-pong
    	<-stop
    	b.StopTimer()
    	<-ping // Let last ponger exit
    	<-done // Make sure goroutines exit
    	<-done
    	<-done
    }
    
    var padData [128]uint64
    
    func stackGrowthRecursive(i int) {
    	var pad [128]uint64
    	pad = padData
    	for j := range pad {
    		if pad[j] != 0 {
    			return
    		}
    	}
    	if i != 0 {
    		stackGrowthRecursive(i - 1)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  10. docs/pt/docs/help-fastapi.md

    Lá você pode me pagar um cafézinho ☕️ como agradecimento. 😄
    
    E você também pode se tornar um patrocinador Prata ou Ouro do FastAPI. 🏅🎉
    
    ## Patrocine as ferramente que potencializam o FastAPI
    
    Como você viu na documentação, o FastAPI se apoia em nos gigantes, Starlette e Pydantic.
    
    Patrocine também:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top