Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 95 for apipod (0.31 sec)

  1. pkg/controller/replicaset/replica_set_test.go

    		for _, r := range c.rss {
    			informers.Apps().V1().ReplicaSets().Informer().GetIndexer().Add(r)
    		}
    		for _, pod := range c.pods {
    			informers.Core().V1().Pods().Informer().GetIndexer().Add(pod)
    			manager.addPod(logger, pod)
    		}
    		actualPods, err := manager.getIndirectlyRelatedPods(logger, c.rs)
    		if err != nil {
    			t.Errorf("Unexpected error from getIndirectlyRelatedPods: %v", err)
    		}
    		var actualPodNames []string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  2. 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)
  3. pkg/scheduler/framework/runtime/framework.go

    		if !status.IsSuccess() {
    			err := status.AsError()
    			logger.Error(err, "Plugin failed", "pod", klog.KObj(podToSchedule), "node", klog.KObj(nodeInfo.Node()), "operation", "addPod", "plugin", pl.Name())
    			return framework.AsStatus(fmt.Errorf("running AddPod on PreFilter plugin %q: %w", pl.Name(), err))
    		}
    	}
    
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  4. hack/verify-golangci-lint.sh

            golangci_config=""
          else
            golangci_config="${OPTARG}"
          fi
          ;;
       *)
         usage
         ;;
      esac
    done
    
    # Below the output of golangci-lint is going to be piped into sed to add
    # a prefix to each output line. This helps make the output more visible
    # in the Prow log viewer ("error" is a key word there) and ensures that
    # only those lines get included as failure message in a JUnit file
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/util/util.go

    			continue
    		}
    
    		uniquePodName := util.GetUniquePodName(pod)
    		if addVolumes {
    			// Add volume to desired state of world
    			_, err := desiredStateOfWorld.AddPod(
    				uniquePodName, pod, volumeSpec, nodeName)
    			if err != nil {
    				logger.V(10).Info("Failed to add volume for pod to desiredStateOfWorld", "pod", klog.KObj(pod), "volumeName", podVolume.Name, "err", err)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. pkg/controller/replicaset/replica_set.go

    	rsc.rsLister = rsInformer.Lister()
    	rsc.rsListerSynced = rsInformer.Informer().HasSynced
    
    	podInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{
    		AddFunc: func(obj interface{}) {
    			rsc.addPod(logger, obj)
    		},
    		// This invokes the ReplicaSet for every pod change, eg: host assignment. Though this might seem like
    		// overkill the most frequent pod update is status, and the associated ReplicaSet will only list from
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    usr\\bin\\mintty.exe -o AppID=GitForWindows.Bash -o RelaunchCommand="C:\\Program Files\\Git\\git-bash.exe" -o RelaunchDisplayName="Git Bash" -i /mingw64/share/git/git-for-windows.ico /usr/bin/bash --login -i      7788
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	addNodes(t, controller, generateNode("node1", map[string]string{NodeZoneLabel: "zone1", NodeRegionLabel: "region1", label.TopologySubzone.Name: "subzone1"}))
    	// Setup help functions to make the test more explicit
    	addPod := func(name, ip string) {
    		pod := generatePod(ip, name, "nsA", name, "node1", map[string]string{"app": "prod-app"}, map[string]string{})
    		addPods(t, controller, fx, pod)
    	}
    	deletePod := func(name, ip string) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  9. pkg/apis/core/helper/helpers.go

    			nonConvertibleKeys[key] = value
    		}
    	}
    	return nonConvertibleKeys
    }
    
    // Semantic can do semantic deep equality checks for core objects.
    // Example: apiequality.Semantic.DeepEqual(aPod, aPodWithNonNilButEmptyMaps) == true
    var Semantic = conversion.EqualitiesOrDie(
    	func(a, b resource.Quantity) bool {
    		// Ignore formatting, only care that numeric value stayed the same.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers.go

    			pod = status.activeUpdate.Pod
    			options.Pod = pod
    			options.RunningPod = nil
    		default:
    			// we will continue to use RunningPod.ToAPIPod() as pod here, but
    			// options.Pod will be nil and other methods must handle that appropriately.
    			pod = options.RunningPod.ToAPIPod()
    		}
    	}
    
    	// When we see a create update on an already terminating pod, that implies two pods with the same UID were created in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top