Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 161 for stkobj (0.12 sec)

  1. src/runtime/mgcmark.go

    		}
    		r := obj.r
    		if r == nil {
    			// We've already scanned this object.
    			continue
    		}
    		obj.setRecord(nil) // Don't scan it again.
    		if stackTraceDebug {
    			printlock()
    			print("  live stkobj at", hex(state.stack.lo+uintptr(obj.off)), "of size", obj.size)
    			if conservative {
    				print(" (conservative)")
    			}
    			println()
    			printunlock()
    		}
    		gcdata := r.gcdata()
    		var s *mspan
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/objfile.go

    		strings.HasSuffix(name, ".arginfo1") ||
    		strings.HasSuffix(name, ".argliveinfo") ||
    		strings.HasSuffix(name, ".wrapinfo") ||
    		strings.HasSuffix(name, ".args_stackmap") ||
    		strings.HasSuffix(name, ".stkobj") {
    		return 'F' // go:func.* or go:funcrel.*
    	}
    	if strings.HasPrefix(name, "type:") {
    		return 'T'
    	}
    	return 0
    }
    
    func contentHash64(s *LSym) goobj.Hash64Type {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/symtab.go

    			strings.HasSuffix(name, ".arginfo1"),
    			strings.HasSuffix(name, ".argliveinfo"),
    			strings.HasSuffix(name, ".wrapinfo"),
    			strings.HasSuffix(name, ".args_stackmap"),
    			strings.HasSuffix(name, ".stkobj"):
    			ldr.SetAttrNotInSymbolTable(s, true)
    			symGroupType[s] = sym.SGOFUNC
    			ldr.SetCarrierSym(s, symgofunc)
    			if ctxt.Debugvlog != 0 {
    				align := ldr.SymAlign(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/liveness/plive.go

    	// Populate the stack object data.
    	// Format must match runtime/stack.go:stackObjectRecord.
    	x := base.Ctxt.Lookup(lv.fn.LSym.Name + ".stkobj")
    	x.Set(obj.AttrContentAddressable, true)
    	lv.fn.LSym.Func().StackObjects = x
    	off := 0
    	off = objw.Uintptr(x, off, uint64(len(vars)))
    	for _, v := range vars {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    					// runtime.etypes must be at the end of
    					// the relro data.
    					isRelro = true
    				}
    			case sym.SGOFUNC:
    				// The only SGOFUNC symbols that contain relocations are .stkobj,
    				// and their relocations are of type objabi.R_ADDROFF,
    				// which always get resolved during linking.
    				isRelro = false
    			}
    			if isRelro {
    				state.setSymType(s, symnrelro)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  6. src/runtime/stack_test.go

    func count22(n int) int { return 1 + count23(n-1) }
    func count23(n int) int { return 1 + count1(n-1) }
    
    type stkobjT struct {
    	p *stkobjT
    	x int64
    	y [20]int // consume some stack
    }
    
    // Sum creates a linked list of stkobjTs.
    func Sum(n int64, p *stkobjT) {
    	if n == 0 {
    		return
    	}
    	s := stkobjT{p: p, x: n}
    	Sum(n-1, &s)
    	p.x += s.x
    }
    
    func BenchmarkStackCopyWithStkobj(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  7. docs/debugging/s3-verify/main.go

    		return false
    	}
    
    	core := minio.Core{Client: sclnt}
    	sobj, _, _, err := core.GetObject(context.Background(), sourceBucket, srcCtnt.Key, opts)
    	if err != nil {
    		fmt.Printf("unreadable on source: %s (%s)\n", srcCtnt.Key, err)
    		return false
    	}
    
    	tobj, _, _, err := core.GetObject(context.Background(), targetBucket, tgtCtnt.Key, opts)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 22 15:12:47 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  8. pkg/api/testing/applyconfiguration_test.go

    		return
    	}
    	rtObj := reflect.New(reflect.TypeOf(item).Elem()).Interface().(runtime.Object)
    	applyData, err := json.Marshal(applyConfig)
    	if err != nil {
    		t.Errorf("applyConfig.MarshalJSON failed: %v", err)
    		return
    	}
    	err = json.Unmarshal(applyData, rtObj)
    	if err != nil {
    		t.Errorf("json.Unmarshal failed: %v", err)
    		return
    	}
    	if !apiequality.Semantic.DeepEqual(item, rtObj) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 20:12:50 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/podtopologyspread/plugin.go

    				"pod", klog.KObj(pod), "createdPod", klog.KObj(modifiedPod))
    			return framework.Queue, nil
    		}
    		logger.V(5).Info("a scheduled pod was created, but it doesn't matches with the pod's topology spread constraints",
    			"pod", klog.KObj(pod), "createdPod", klog.KObj(modifiedPod))
    		return framework.QueueSkip, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 14:13:06 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller.go

    				podsToDelete = append(podsToDelete, oldestOldPod.Name)
    			case podutil.IsPodAvailable(oldestNewPod, ds.Spec.MinReadySeconds, metav1.Time{Time: dsc.failedPodsBackoff.Clock.Now()}):
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top