Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PostBind (0.11 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    						initialObjects = testCtx.listAll(t)
    						initialObjects = testCtx.updateAPIServer(t, initialObjects, tc.prepare.postbind)
    						testCtx.p.PostBind(testCtx.ctx, testCtx.state, tc.pod, selectedNode.Node().Name)
    						t.Run("postbind", func(t *testing.T) {
    							testCtx.verify(t, tc.want.postbind, initialObjects, nil, nil)
    						})
    					}
    				}
    			} else {
    				initialObjects = testCtx.listAll(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework.go

    	if !state.ShouldRecordPluginMetrics() {
    		pl.PostBind(ctx, state, pod, nodeName)
    		return
    	}
    	startTime := time.Now()
    	pl.PostBind(ctx, state, pod, nodeName)
    	f.metricsRecorder.ObservePluginDurationAsync(metrics.PostBind, pl.Name(), framework.Success.String(), metrics.SinceInSeconds(startTime))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    				logger.V(5).Info("Claim not stored in assume cache", "err", err)
    			}
    		}
    		pl.inFlightAllocations.Delete(claim.UID)
    	}
    	return claim, err
    }
    
    // PostBind is called after a pod is successfully bound to a node. Now we are
    // sure that a PodSchedulingContext object, if it exists, is definitely not going to
    // be needed anymore and can delete it. This is a one-shot thing, there won't
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top