Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 221 for nilfunc (0.25 sec)

  1. cmd/kube-controller-manager/app/core.go

    )
    
    func newServiceLBControllerDescriptor() *ControllerDescriptor {
    	return &ControllerDescriptor{
    		name:                      cpnames.ServiceLBController,
    		aliases:                   []string{"service"},
    		initFunc:                  startServiceLBController,
    		isCloudProviderController: true,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/pcln.go

    // returned by valfunc parameterized by arg. The invocation of valfunc to update the
    // current value is, for each p,
    //
    //	sym = valfunc(func, p, 0, arg);
    //	record sym.P as value at p->pc;
    //	sym = valfunc(func, p, 1, arg);
    //
    // where func is the function, val is the current value, p is the instruction being
    // considered, and arg can be used to further parameterize valfunc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/storage_factory.go

    			klogV.InfoS("Storage caching is enabled", objectTypeToArgs(newFunc())...)
    		}
    
    		cacherConfig := cacherstorage.Config{
    			Storage:        s,
    			Versioner:      storage.APIObjectVersioner{},
    			GroupResource:  storageConfig.GroupResource,
    			ResourcePrefix: resourcePrefix,
    			KeyFunc:        keyFunc,
    			NewFunc:        newFunc,
    			NewListFunc:    newListFunc,
    			GetAttrsFunc:   getAttrsFunc,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. src/runtime/os2_aix.go

    	libpthread_attr_setstackaddr,
    	libpthread_create,
    	libpthread_sigthreadmask,
    	libpthread_self,
    	libpthread_kill libFunc
    )
    
    type libFunc uintptr
    
    // asmsyscall6 calls the libc symbol using a C convention.
    // It's defined in sys_aix_ppc64.go.
    var asmsyscall6 libFunc
    
    // syscallX functions must always be called with g != nil and m != nil,
    // as it relies on g.m.libcall to pass arguments to asmcgocall.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loong64/asm.go

    	"cmd/link/internal/loader"
    	"cmd/link/internal/sym"
    	"debug/elf"
    	"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)
    	}
    
    	// Emit the following function:
    	//
    	//	local.dso_init:
    	//		la.pcrel $a0, local.moduledata
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:26:07 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector.go

    	}
    	return cs, nil
    }
    
    // NewEgressSelectorWithMap returns a EgressSelector with the supplied EgressType to DialFunc map.
    func NewEgressSelectorWithMap(m map[EgressType]utilnet.DialFunc) *EgressSelector {
    	if m == nil {
    		m = make(map[EgressType]utilnet.DialFunc)
    	}
    	return &EgressSelector{
    		egressToDialer: m,
    	}
    }
    
    // Lookup gets the dialer function for the network context.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/batch.go

    	"k8s.io/kubernetes/pkg/controller/job"
    )
    
    func newJobControllerDescriptor() *ControllerDescriptor {
    	return &ControllerDescriptor{
    		name:     names.JobController,
    		aliases:  []string{"job"},
    		initFunc: startJobController,
    	}
    }
    
    func startJobController(ctx context.Context, controllerContext ControllerContext, controllerName string) (controller.Interface, bool, error) {
    	jobController, err := job.NewController(
    		ctx,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. callbacks/update.go

    								if field.AutoUpdateTime == schema.UnixNanosecond {
    									value = stmt.DB.NowFunc().UnixNano()
    								} else if field.AutoUpdateTime == schema.UnixMillisecond {
    									value = stmt.DB.NowFunc().UnixMilli()
    								} else if field.AutoUpdateTime == schema.UnixSecond {
    									value = stmt.DB.NowFunc().Unix()
    								} else {
    									value = stmt.DB.NowFunc()
    								}
    								isZero = false
    							}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 05:44:55 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. cmd/kube-controller-manager/app/bootstrap.go

    )
    
    func newBootstrapSignerControllerDescriptor() *ControllerDescriptor {
    	return &ControllerDescriptor{
    		name:                names.BootstrapSignerController,
    		aliases:             []string{"bootstrapsigner"},
    		initFunc:            startBootstrapSignerController,
    		isDisabledByDefault: true,
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 11:28:02 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    // binary. Only a high-confidence subset of the default go vet checks are
    // used. That subset is: atomic, bool, buildtags, directive, errorsas,
    // ifaceassert, nilfunc, printf, and stringintconv. You can see
    // the documentation for these and other vet tests via "go doc cmd/vet".
    // To disable the running of go vet, use the -vet=off flag. To run all
    // checks, use the -vet=all flag.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top