Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for Reconciled (0.25 sec)

  1. pkg/kubelet/volumemanager/reconciler/reconstruct_test.go

    				// Mark DSW populated to allow unmounting of volumes.
    				return true
    			}
    			// Mark devices paths as reconciled to allow unmounting of volumes.
    			rcInstance.volumesNeedUpdateFromNodeStatus = nil
    
    			// Act 2 - reconcile once
    			rcInstance.reconcile()
    
    			// Assert 2
    			// MountDevice was attempted
    			var lastErr error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/controller_test.go

    	require.NoError(t, waitForReconcile(initialObject), "initial reconcile")
    	require.NoError(t, waitForReconcile(initialObject), "previous reconcile failed, should retry quickly")
    	require.NoError(t, waitForReconcile(initialObject), "previous reconcile failed, should retry quickly")
    	// Will not try again since calls > 2 for last reconcile
    	require.True(t, success.Load(), "last call to reconcile should return success")
    	testCancel()
    	wg.Wait()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/prepare_tpu_computation_for_tf_export.cc

        return module.emitError("failed to apply tf export preparation patterns");
      }
    
      // TODO(hinsu): Investigate if the semantics of keys for these communication
      // ops between the old bridge and new bridge can be reconciled.
      module.walk([&](Operation* op) {
        if (isa<TF::XlaSendToHostOp>(op)) {
          StringRef old_key = op->getAttrOfType<StringAttr>("key").getValue();
          auto new_key = StringAttr::get(ctx, old_key.str() + "_dtoh_0");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. pkg/controlplane/apiserver/config.go

    	// that can not be served locally
    	PeerProxy utilpeerproxy.Interface
    	// PeerEndpointReconcileInterval defines how often the endpoint leases are reconciled in etcd.
    	PeerEndpointReconcileInterval time.Duration
    	// PeerEndpointLeaseReconciler updates the peer endpoint leases
    	PeerEndpointLeaseReconciler peerreconcilers.PeerEndpointLeaseReconciler
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  5. pkg/controlplane/instance.go

    type CompletedConfig struct {
    	*completedConfig
    }
    
    // EndpointReconcilerConfig holds the endpoint reconciler and endpoint reconciliation interval to be
    // used by the master.
    type EndpointReconcilerConfig struct {
    	Reconciler reconcilers.EndpointReconciler
    	Interval   time.Duration
    }
    
    // Instance contains state for a Kubernetes cluster api server instance.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/dra/manager.go

    func (m *ManagerImpl) reconcileLoop() {
    	// Only once all sources are ready do we attempt to reconcile.
    	// This ensures that the call to m.activePods() below will succeed with
    	// the actual active pods list.
    	if m.sourcesReady == nil || !m.sourcesReady.AllReady() {
    		return
    	}
    
    	// Get the full list of active pods.
    	activePods := sets.New[string]()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. pkg/kubelet/status/status_manager.go

    // needsReconcile compares the given status with the status in the pod manager (which
    // in fact comes from apiserver), returns whether the status needs to be reconciled with
    // the apiserver. Now when pod status is inconsistent between apiserver and kubelet,
    // kubelet should forcibly send an update to reconcile the inconsistence, because kubelet
    // should be the source of truth of pod status.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  8. operator/pkg/helmreconciler/prune.go

    			continue
    		}
    		usList = append(usList, objects)
    	}
    
    	return usList, nil
    }
    
    // getIstioOperatorCR is a helper function to get IstioOperator CR during purge,
    // otherwise the resources would be reconciled back later if there is in-cluster operator deployment.
    // And it is needed to remove the IstioOperator CRD.
    func (h *HelmReconciler) getIstioOperatorCR() *unstructured.UnstructuredList {
    	iopGVR := iopv1alpha1.IstioOperatorGVR
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. pkg/controller/cronjob/cronjob_controllerv2.go

    	for _, job := range jobList {
    		// If it has a ControllerRef, that's all that matters.
    		if controllerRef := metav1.GetControllerOf(job); controllerRef != nil && controllerRef.Name == cronJob.Name {
    			// this job is needs to be reconciled
    			jobsToBeReconciled = append(jobsToBeReconciled, job)
    		}
    	}
    	return jobsToBeReconciled, nil
    }
    
    // When a job is created, enqueue the controller that manages it and update it's expectations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  10. pkg/controller/endpointslicemirroring/reconciler_test.go

    // Test Helpers
    
    func newReconciler(ctx context.Context, client *fake.Clientset, maxEndpointsPerSubset int32) *reconciler {
    	broadcaster := record.NewBroadcaster(record.WithContext(ctx))
    	recorder := broadcaster.NewRecorder(scheme.Scheme, corev1.EventSource{Component: "endpoint-slice-mirroring-controller"})
    
    	return &reconciler{
    		client:                client,
    		maxEndpointsPerSubset: maxEndpointsPerSubset,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 42.7K bytes
    - Viewed (0)
Back to top