Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for polplugin (0.1 sec)

  1. pkg/scheduler/apis/config/v1/defaults_test.go

    			config: &configv1.KubeSchedulerConfiguration{
    				Parallelism: ptr.To[int32](16),
    				Profiles: []configv1.KubeSchedulerProfile{
    					{
    						PluginConfig: []configv1.PluginConfig{
    							{Name: "FooPlugin"},
    						},
    					},
    					{
    						SchedulerName: ptr.To("custom-scheduler"),
    						Plugins: &configv1.Plugins{
    							Bind: configv1.PluginSet{
    								Enabled: []configv1.Plugin{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:03:04 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/inittask.go

    	case BuildModePlugin:
    		// For plugins, the list will be run on plugin load.
    		ctxt.mainInittasks = ctxt.inittaskSym([]string{fmt.Sprintf("%s..inittask", objabi.PathToPrefix(*flagPluginPath))}, "go:plugin.inittasks")
    		// Make symbol local so multiple plugins don't clobber each other's inittask list.
    		ctxt.loader.SetAttrLocal(ctxt.mainInittasks, true)
    	case BuildModeShared:
    		// For a shared library, all packages are roots.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 20:09:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/deadcode.go

    		names = append(names, objabi.PathToPrefix(*flagPluginPath)+"..inittask", objabi.PathToPrefix(*flagPluginPath)+".main", "go:plugin.tabs")
    
    		// We don't keep the go.plugin.exports symbol,
    		// but we do keep the symbols it refers to.
    		exportsIdx := d.ldr.Lookup("go:plugin.exports", 0)
    		if exportsIdx != 0 {
    			relocs := d.ldr.Relocs(exportsIdx)
    			for i := 0; i < relocs.Count(); i++ {
    				d.mark(relocs.At(i).Sym(), 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	err := q.AddUnschedulableIfNotPresent(logger, q.newQueuedPodInfo(unschedulablePodInfo.Pod, "fooPlugin"), q.SchedulingCycle())
    	if err != nil {
    		t.Fatalf("unexpected error from AddUnschedulableIfNotPresent: %v", err)
    	}
    	err = q.AddUnschedulableIfNotPresent(logger, q.newQueuedPodInfo(highPriorityPodInfo.Pod, "fooPlugin"), q.SchedulingCycle())
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top