Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,199 for syncAt (0.11 sec)

  1. pkg/kubelet/kubelet_pods_test.go

    				uid := types.UID("1")
    				if len(w.podSyncStatuses) != 0 {
    					t.Fatalf("unexpected sync statuses: %#v", w.podSyncStatuses)
    				}
    				// no pod sync record was delivered
    				if actual, expected := records[uid], []syncPodRecord(nil); !reflect.DeepEqual(expected, actual) {
    					t.Fatalf("unexpected pod sync records: %s", cmp.Diff(expected, actual, cmp.AllowUnexported(syncPodRecord{})))
    				}
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  2. pkg/kube/kclient/client.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package kclient
    
    import (
    	"context"
    	"fmt"
    	"sync"
    	"sync/atomic"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	klabels "k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	apitypes "k8s.io/apimachinery/pkg/types"
    	"k8s.io/client-go/tools/cache"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 07:14:28 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. 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)
  4. pkg/controller/job/job_controller.go

    	syncHandler         func(ctx context.Context, jobKey string) error
    	// podStoreSynced returns true if the pod store has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    	podStoreSynced cache.InformerSynced
    	// jobStoreSynced returns true if the job store has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    	jobStoreSynced cache.InformerSynced
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  5. pkg/controller/volume/attachdetach/attach_detach_controller_test.go

    		if err != nil {
    			t.Fatalf("Run failed with error. Failed to create a new volumeAttachment: <%v>", err)
    		}
    		vaInformer.GetIndexer().Add(newVa)
    	}
    
    	// Makesure the informer cache is synced
    	informerFactory.Start(tCtx.Done())
    
    	if !kcache.WaitForNamedCacheSync("attach detach", tCtx.Done(),
    		informerFactory.Core().V1().Pods().Informer().HasSynced,
    		informerFactory.Core().V1().Nodes().Informer().HasSynced,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 11:00:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/controller_test.go

    	}
    }
    
    func unsynced(status map[reflect.Type]bool) []string {
    	names := make([]string, 0)
    
    	for objType, synced := range status {
    		if !synced {
    			names = append(names, objType.Name())
    		}
    	}
    
    	return names
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  7. src/os/user/lookup_unix_test.go

    root:x:0:0:root:/root:/bin/bash
    daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
    bin:x:2:3:bin:/bin:/usr/sbin/nologin
         indented:x:3:3:indented:/dev:/usr/sbin/nologin
    sync:x:4:65534:sync:/bin:/bin/sync
    negative:x:-5:60:games:/usr/games:/usr/sbin/nologin
    man:x:6:12:man:/var/cache/man:/usr/sbin/nologin
    allfields:x:6:12:mansplit,man2,man3,man4:/home/allfields:/usr/sbin/nologin
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 11 04:31:34 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/ingress/status.go

    	c.ingresses.AddEventHandler(controllers.ObjectHandler(c.queue.AddObject))
    	// For any class change, sync all ingress; the handler will filter non-matching ones already
    	c.ingressClasses.AddEventHandler(controllers.ObjectHandler(func(o controllers.Object) {
    		// Just sync them all
    		c.enqueueAll()
    	}))
    	// For services, we queue all Ingress if its the ingress service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. src/runtime/race_s390x.s

    TEXT	sync∕atomic·LoadUint64(SB), NOSPLIT, $0-16
    	GO_ARGS
    	JMP	sync∕atomic·LoadInt64(SB)
    
    TEXT	sync∕atomic·LoadUintptr(SB), NOSPLIT, $0-16
    	GO_ARGS
    	JMP	sync∕atomic·LoadInt64(SB)
    
    TEXT	sync∕atomic·LoadPointer(SB), NOSPLIT, $0-16
    	GO_ARGS
    	JMP	sync∕atomic·LoadInt64(SB)
    
    // Store
    
    TEXT	sync∕atomic·StoreInt32(SB), NOSPLIT, $0-12
    	GO_ARGS
    	MOVD	$__tsan_go_atomic32_store(SB), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. cmd/kube-controller-manager/app/options/endpointslicecontroller.go

    		errs = append(errs, fmt.Errorf("concurrent-service-endpoint-syncs must not be less than %d, but got %d", minConcurrentServiceEndpointSyncs, o.ConcurrentServiceEndpointSyncs))
    	} else if o.ConcurrentServiceEndpointSyncs > maxConcurrentServiceEndpointSyncs {
    		errs = append(errs, fmt.Errorf("concurrent-service-endpoint-syncs must not be more than %d, but got %d", maxConcurrentServiceEndpointSyncs, o.ConcurrentServiceEndpointSyncs))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 03 07:16:42 UTC 2020
    - 3.7K bytes
    - Viewed (0)
Back to top