Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 172 for addpad (0.15 sec)

  1. pkg/controller/disruption/disruption.go

    	dc.enqueuePdb(logger, pdb)
    }
    
    func (dc *DisruptionController) addPod(logger klog.Logger, obj interface{}) {
    	pod := obj.(*v1.Pod)
    	logger.V(4).Info("AddPod called on pod", "pod", klog.KObj(pod))
    	pdb := dc.getPdbForPod(logger, pod)
    	if pdb == nil {
    		logger.V(4).Info("No matching PDB for pod", "pod", klog.KObj(pod))
    	} else {
    		logger.V(4).Info("addPod -> PDB", "pod", klog.KObj(pod), "podDisruptionBudget", klog.KObj(pdb))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/trampoline_reuse_test.txt

    # Verify PPC64 does not reuse a trampoline which is too far away.
    # This tests an edge case where the direct call relocation addend should
    # be ignored when computing the distance from the direct call to the
    # already placed trampoline
    [short] skip
    [!GOARCH:ppc64] [!GOARCH:ppc64le] skip
    [GOOS:aix] skip
    
    # Note, this program does not run. Presumably, 'DWORD $0' is simpler to
    # assembly 2^26 or so times.
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 14:31:23 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/rsc.io_sampler_v1.2.1.txt

    generated by ./addmod.bash rsc.io/sampler@v1.2.1
    
    -- .mod --
    module "rsc.io/sampler"
    
    require "golang.org/x/text" v0.0.0-20170915032832-14c0d48ead0c
    -- .info --
    {"Version":"v1.2.1","Name":"cac3af4f8a0ab40054fa6f8d423108a63a1255bb","Short":"cac3af4f8a0a","Time":"2018-02-13T18:16:22Z"}
    -- hello.go --
    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 17:49:01 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  4. src/cmd/internal/dwarf/dwarf_defs.go

    	DW_OP_neg                 = 0x1f // 0
    	DW_OP_not                 = 0x20 // 0
    	DW_OP_or                  = 0x21 // 0
    	DW_OP_plus                = 0x22 // 0
    	DW_OP_plus_uconst         = 0x23 // 1 ULEB128 addend
    	DW_OP_shl                 = 0x24 // 0
    	DW_OP_shr                 = 0x25 // 0
    	DW_OP_shra                = 0x26 // 0
    	DW_OP_xor                 = 0x27 // 0
    	DW_OP_skip                = 0x2f // 1 signed 2-byte constant
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 15:55:36 UTC 2019
    - 16.1K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/interface.go

    // callbacks to make incremental updates to its supposedly pre-calculated
    // state.
    type PreFilterExtensions interface {
    	// AddPod is called by the framework while trying to evaluate the impact
    	// of adding podToAdd to the node while scheduling podToSchedule.
    	AddPod(ctx context.Context, state *CycleState, podToSchedule *v1.Pod, podInfoToAdd *PodInfo, nodeInfo *NodeInfo) *Status
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/runtime/framework_test.go

    			t.Errorf("preFilter2 called %v, expected: 1", preFilter2.PreFilterCalled)
    		}
    		if preFilter2.AddCalled != 1 {
    			t.Errorf("AddPod called %v, expected: 1", preFilter2.AddCalled)
    		}
    		if preFilter2.RemoveCalled != 1 {
    			t.Errorf("AddPod called %v, expected: 1", preFilter2.RemoveCalled)
    		}
    	})
    }
    
    func TestRunPreFilterPlugins(t *testing.T) {
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  7. pkg/controller/endpoint/endpoints_controller.go

    	}
    
    	go func() {
    		defer utilruntime.HandleCrash()
    		e.checkLeftoverEndpoints()
    	}()
    
    	<-ctx.Done()
    }
    
    // When a pod is added, figure out what services it will be a member of and
    // enqueue them. obj must have *v1.Pod type.
    func (e *Controller) addPod(obj interface{}) {
    	pod := obj.(*v1.Pod)
    	services, err := endpointsliceutil.GetPodServiceMemberships(e.serviceLister, pod)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/stablehlo/quantization.cc

      // inference pass is also required to resolve unknown shapes in the TF dialect
      // after variable freezing.
      mlir::PassManager pm(module_op.getContext());
      pm.addPass(mlir::TF::CreateTFShapeInferencePass());
      mlir::odml::AddLegalizeTFToStablehloPasses(pm, /*skip_quantization_ops=*/true,
                                                 /*skip_resize=*/false,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 10:49:12 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  9. pkg/controller/replicaset/replica_set_test.go

    	pod.ResourceVersion = "1"
    	manager.expectations.ExpectDeletions(logger, rsKey, []string{controller.PodKey(&pod)})
    
    	// A pod added with a deletion timestamp should decrement deletions, not creations.
    	manager.addPod(logger, &pod)
    
    	queueRS, _ := manager.queue.Get()
    	if queueRS != rsKey {
    		t.Fatalf("Expected to find key %v in queue, found %v", rsKey, queueRS)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  10. pkg/scheduler/eventhandlers.go

    	if !ok {
    		logger.Error(nil, "Cannot convert to *v1.Pod", "obj", obj)
    		return
    	}
    
    	logger.V(3).Info("Add event for scheduled pod", "pod", klog.KObj(pod))
    	if err := sched.Cache.AddPod(logger, pod); err != nil {
    		logger.Error(err, "Scheduler cache AddPod failed", "pod", klog.KObj(pod))
    	}
    
    	sched.SchedulingQueue.AssignedPodAdded(logger, pod)
    }
    
    func (sched *Scheduler) updatePodInCache(oldObj, newObj interface{}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:04 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top