Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for intFunc (0.17 sec)

  1. src/cmd/link/internal/ppc64/asm.go

    	}
    
    	if !hasPCrel {
    		sz := initfunc.AddSymRef(ctxt.Arch, tgt, 0, objabi.R_ADDRPOWER_GOT, 8)
    		initfunc.SetUint32(ctxt.Arch, sz-8, 0x3c620000) // addis r3, r2, local.moduledata@got@ha
    		initfunc.SetUint32(ctxt.Arch, sz-4, 0xe8630000) // ld r3, local.moduledata@got@l(r3)
    	} else {
    		sz := initfunc.AddSymRef(ctxt.Arch, tgt, 0, objabi.R_ADDRPOWER_GOT_PCREL34, 8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/validatingadmissionpolicystatus.go

    )
    
    func newValidatingAdmissionPolicyStatusControllerDescriptor() *ControllerDescriptor {
    	return &ControllerDescriptor{
    		name:     names.ValidatingAdmissionPolicyStatusController,
    		initFunc: startValidatingAdmissionPolicyStatusController,
    		requiredFeatureGates: []featuregate.Feature{
    			genericfeatures.ValidatingAdmissionPolicy,
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/arm/asm.go

    func gentext(ctxt *ld.Link, ldr *loader.Loader) {
    	initfunc, addmoduledata := ld.PrepareAddmoduledata(ctxt)
    	if initfunc == nil {
    		return
    	}
    
    	o := func(op uint32) {
    		initfunc.AddUint32(ctxt.Arch, op)
    	}
    	o(0xe59f0004)
    	o(0xe08f0000)
    
    	o(0xeafffffe)
    	rel, _ := initfunc.AddRel(objabi.R_CALLARM)
    	rel.SetOff(8)
    	rel.SetSiz(4)
    	rel.SetSym(addmoduledata)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/controllermanager_test.go

    			initFuncCalled := false
    
    			taintEvictionControllerDescriptor := NewControllerDescriptors()[names.TaintEvictionController]
    			taintEvictionControllerDescriptor.initFunc = func(ctx context.Context, controllerContext ControllerContext, controllerName string) (controller controllermanagercontroller.Interface, enabled bool, err error) {
    				initFuncCalled = true
    				return nil, true, nil
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/pcln.go

    		call := fi.InlTree(i)
    		nameOff, ok := nameOffsets[call.Func]
    		if !ok {
    			panic("couldn't find function name offset")
    		}
    
    		inlFunc := ldr.FuncInfo(call.Func)
    		var funcID abi.FuncID
    		startLine := int32(0)
    		if inlFunc.Valid() {
    			funcID = inlFunc.FuncID()
    			startLine = inlFunc.StartLine()
    		} else if !ctxt.linkShared {
    			// Inlined functions are always Go functions, and thus
    			// must have FuncInfo.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  6. src/go/internal/gccgoimporter/importer.go

    	"internal/xcoff"
    	"io"
    	"os"
    	"path/filepath"
    	"strings"
    )
    
    // A PackageInit describes an imported package that needs initialization.
    type PackageInit struct {
    	Name     string // short package name
    	InitFunc string // name of init function
    	Priority int    // priority of init function, see InitData.Priority
    }
    
    // The gccgo-specific init data for a package.
    type InitData struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 6.8K bytes
    - Viewed (0)
  7. src/go/internal/gccgoimporter/importer_test.go

    		}
    	}
    
    	if len(test.wantinits) > 0 {
    		initdata := initmap[pkg]
    		found := false
    		// Check that the package's own init function has the package's priority
    		for _, pkginit := range initdata.Inits {
    			if pkginit.InitFunc == test.wantinits[0] {
    				found = true
    				break
    			}
    		}
    
    		if !found {
    			t.Errorf("%s: could not find expected function %q", test.pkgpath, test.wantinits[0])
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:17:57 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  8. src/cmd/link/internal/arm64/asm.go

    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"debug/elf"
    	"fmt"
    	"log"
    )
    
    func gentext(ctxt *ld.Link, ldr *loader.Loader) {
    	initfunc, addmoduledata := ld.PrepareAddmoduledata(ctxt)
    	if initfunc == nil {
    		return
    	}
    
    	o := func(op uint32) {
    		initfunc.AddUint32(ctxt.Arch, op)
    	}
    	// 0000000000000000 <local.dso_init>:
    	// 0:	90000000 	adrp	x0, 0 <runtime.firstmoduledata>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 47K bytes
    - Viewed (0)
  9. cmd/cloud-controller-manager/nodeipamcontroller.go

    }
    
    func (nodeIpamController *nodeIPAMController) StartNodeIpamControllerWrapper(initContext app.ControllerInitContext, completedConfig *cloudcontrollerconfig.CompletedConfig, cloud cloudprovider.Interface) app.InitFunc {
    	allErrors := nodeIpamController.nodeIPAMControllerOptions.Validate()
    	if len(allErrors) > 0 {
    		klog.Fatal("NodeIPAM controller values are not properly set.")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 14 19:06:22 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  10. src/go/internal/gccgoimporter/parser.go

    // PackageInit = unquotedString unquotedString int .
    func (p *parser) parsePackageInit() PackageInit {
    	name := p.parseUnquotedString()
    	initfunc := p.parseUnquotedString()
    	priority := -1
    	if p.version == "v1" {
    		priority = p.parseInt()
    	}
    	return PackageInit{Name: name, InitFunc: initfunc, Priority: priority}
    }
    
    // Create the package if we have parsed both the package path and package name.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 23:14:07 UTC 2024
    - 31.2K bytes
    - Viewed (0)
Back to top