Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 601 for syncAt (0.26 sec)

  1. pkg/controller/statefulset/stateful_set_status_updater_test.go

    		update := action.(core.UpdateAction)
    		sts := update.GetObject().(*apps.StatefulSet)
    		if sts.Status.ObservedGeneration != 3 {
    			t.Errorf("expected observedGeneration to be synced with generation for statefulset %q", sts.Name)
    		}
    		return true, sts, nil
    	})
    	if err := updater.UpdateStatefulSetStatus(context.TODO(), set, &status); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 13 15:37:10 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/pilot/status.go

    	listenerStatus        string
    	routeStatus           string
    	endpointStatus        string
    	extensionconfigStatus string
    }
    
    const ignoredStatus = "IGNORED"
    
    // PrintAll takes a slice of Istiod syncz responses and outputs them using a tabwriter
    func (s *XdsStatusWriter) PrintAll(statuses map[string]*discovery.DiscoveryResponse) error {
    	w, fullStatus, err := s.setupStatusPrint(statuses)
    	if err != nil {
    		return err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:55 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/dra/claiminfo.go

    	for _, claimInfo := range cache.claimInfo {
    		if claimInfo.hasPodReference(UID) {
    			return true
    		}
    	}
    	return false
    }
    
    // syncToCheckpoint syncs the full claim info cache state to a checkpoint.
    func (cache *claimInfoCache) syncToCheckpoint() error {
    	claimInfoStateList := make(state.ClaimInfoStateList, 0, len(cache.claimInfo))
    	for _, infoClaim := range cache.claimInfo {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. pkg/kubelet/types/pod_update.go

    		}
    	}
    	return "", fmt.Errorf("cannot get source of pod %q", pod.UID)
    }
    
    // SyncPodType classifies pod updates, eg: create, update.
    type SyncPodType int
    
    const (
    	// SyncPodSync is when the pod is synced to ensure desired state
    	SyncPodSync SyncPodType = iota
    	// SyncPodUpdate is when the pod is updated from source
    	SyncPodUpdate
    	// SyncPodCreate is when the pod is created from source
    	SyncPodCreate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/README.md

    compatibility guarantee.
    
    
    ## Where does it come from?
    
    `apimachinery` is synced from https://github.com/kubernetes/kubernetes/blob/master/staging/src/k8s.io/apimachinery.
    Code changes are made in that location, merged into `k8s.io/kubernetes` and later synced here.
    
    
    ## Things you should *NOT* do
    
     1. Add API types to this repo. This is for the machinery, not for the types.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 03 01:38:34 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  6. pkg/kube/krt/join_test.go

    		Labeled: Labeled{map[string]string{"app": "foo"}},
    		IP:      "9.9.9.9",
    	})
    	AllPods := krt.JoinCollection([]krt.Collection[SimplePod]{SimplePods, ExtraSimplePods.AsCollection()})
    	assert.Equal(t, AllPods.Synced().WaitUntilSynced(stop), true)
    	// Assert Equal -- not EventuallyEqual -- to ensure our WaitForCacheSync is proper
    	assert.Equal(t, fetcherSorted(AllPods)(), []SimplePod{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 09 19:55:53 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. pkg/controller/bootstrap/tokencleaner.go

    	// secretLister is able to list/get secrets and is populated by the shared informer passed to NewTokenCleaner.
    	secretLister corelisters.SecretLister
    
    	// secretSynced returns true if the secret shared informer has been synced at least once.
    	secretSynced cache.InformerSynced
    
    	queue workqueue.TypedRateLimitingInterface[string]
    }
    
    // NewTokenCleaner returns a new *NewTokenCleaner.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/node/graph_populator.go

    			UpdateFunc: nil, // Not needed, NodeName is immutable.
    			DeleteFunc: g.deleteResourceSlice,
    		})
    		synced = append(synced, sliceHandler.HasSynced)
    	}
    
    	go cache.WaitForNamedCacheSync("node_authorizer", wait.NeverStop, synced...)
    }
    
    func (g *graphPopulator) addPod(obj interface{}) {
    	g.updatePod(nil, obj)
    }
    
    func (g *graphPopulator) updatePod(oldObj, obj interface{}) {
    	pod := obj.(*corev1.Pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/discovery/file/file.go

    		config.Clusters[currentClusterName].CertificateAuthorityData = refreshedCluster.CertificateAuthorityData
    		klog.V(1).Infof("[discovery] Synced CertificateAuthorityData from the %s ConfigMap", bootstrapapi.ConfigMapClusterInfo)
    	}
    
    	return config, nil
    }
    
    // tryParseClusterInfoFromConfigMap tries to parse a kubeconfig file from a ConfigMap key
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. pkg/kube/kubetypes/types.go

    	ObjectTransform func(obj any) (any, error)
    }
    
    // CrdWatcher exposes an interface to watch CRDs
    type CrdWatcher interface {
    	// HasSynced returns true once all existing state has been synced.
    	HasSynced() bool
    	// KnownOrCallback returns `true` immediately if the resource is known.
    	// If it is not known, `false` is returned. If the resource is later added, the callback will be triggered.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top