Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 695 for WATCH (0.07 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher_test.go

    	}
    
    	if !w.stopped {
    		t.Fatal("expected the watcher to be stopped but it wasn't")
    	}
    	verifyEvents(t, w, []watch.Event{
    		{Type: watch.Added, Object: makePod(1)},
    		{Type: watch.Added, Object: makePod(2)},
    		{Type: watch.Added, Object: makePod(5)},
    		{Type: watch.Bookmark, Object: &v1.Pod{
    			ObjectMeta: metav1.ObjectMeta{
    				ResourceVersion: "10",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  2. security/pkg/nodeagent/sds/sdsservice.go

    }
    
    func (w *Watch) UpdateWatchedResource(_ string, f func(*xds.WatchedResource) *xds.WatchedResource) {
    	w.Lock()
    	defer w.Unlock()
    	w.watch = f(w.watch)
    }
    
    func (w *Watch) GetID() string {
    	// This always maps to the same local Envoy instance.
    	return ""
    }
    
    func (w *Watch) requested(secretName string) bool {
    	w.Lock()
    	defer w.Unlock()
    	if w.watch != nil {
    		for _, res := range w.watch.ResourceNames {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/vfs/impl/WatchingVirtualFileSystemTest.groovy

    import org.gradle.internal.watch.registry.WatchMode
    import org.gradle.internal.watch.registry.impl.DaemonDocumentationIndex
    import org.gradle.internal.watch.vfs.FileChangeListeners
    import org.gradle.internal.watch.vfs.VfsLogging
    import org.gradle.internal.watch.vfs.WatchLogging
    import org.gradle.internal.watch.vfs.WatchableFileSystemDetector
    import spock.lang.Specification
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics_test.go

    			desc:        "GET is transformed to WATCH if we have the right query param on the request",
    			initialVerb: "GET",
    			request: &http.Request{
    				Method: "GET",
    				URL: &url.URL{
    					RawQuery: "watch=true",
    				},
    			},
    			expectedVerb: "WATCH",
    		},
    		{
    			desc:          "LIST is transformed to WATCH for the old pattern watch",
    			initialVerb:   "LIST",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  5. api/discovery/api__v1.json

          "storageVersionHash": "qFsyl6wFWjQ=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "Endpoints",
          "name": "endpoints",
          "namespaced": true,
          "shortNames": [
            "ep"
          ],
          "singularName": "endpoints",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  6. pkg/client/conditions/conditions.go

    // returns ErrPodCompleted if the pod has run to completion, or an error in any other case.
    func PodRunning(event watch.Event) (bool, error) {
    	switch event.Type {
    	case watch.Deleted:
    		return false, errors.NewNotFound(schema.GroupResource{Resource: "pods"}, "")
    	}
    	switch t := event.Object.(type) {
    	case *v1.Pod:
    		switch t.Status.Phase {
    		case v1.PodRunning:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 13:43:36 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. cluster/addons/volumesnapshots/volume-snapshot-controller/rbac-volume-snapshot-controller.yaml

        resources: ["persistentvolumes"]
        verbs: ["get", "list", "watch"]
      - apiGroups: [""]
        resources: ["persistentvolumeclaims"]
        verbs: ["get", "list", "watch", "update"]
      - apiGroups: ["storage.k8s.io"]
        resources: ["storageclasses"]
        verbs: ["get", "list", "watch"]
      - apiGroups: [""]
        resources: ["events"]
        verbs: ["list", "watch", "create", "update", "patch"]
      - apiGroups: ["snapshot.storage.k8s.io"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 14:09:47 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/types.go

    type ListOptions struct {
    	metav1.TypeMeta
    
    	// A selector based on labels
    	LabelSelector labels.Selector
    	// A selector based on fields
    	FieldSelector fields.Selector
    	// If true, watch for changes to this list
    	Watch bool
    	// allowWatchBookmarks requests watch events with type "BOOKMARK".
    	// Servers that do not implement bookmarks may ignore this flag and
    	// bookmarks are sent at the server's discretion. Clients should not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 09:55:40 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/impl/WatchingNotSupportedVirtualFileSystem.java

    import org.gradle.internal.watch.registry.WatchMode;
    import org.gradle.internal.watch.vfs.BuildFinishedFileSystemWatchingBuildOperationType;
    import org.gradle.internal.watch.vfs.BuildLifecycleAwareVirtualFileSystem;
    import org.gradle.internal.watch.vfs.BuildStartedFileSystemWatchingBuildOperationType;
    import org.gradle.internal.watch.vfs.VfsLogging;
    import org.gradle.internal.watch.vfs.WatchLogging;
    import org.slf4j.Logger;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:41:07 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/filters/goaway_test.go

    const (
    	urlGet             = "/get"
    	urlPost            = "/post"
    	urlWatch           = "/watch"
    	urlGetWithGoaway   = "/get-with-goaway"
    	urlPostWithGoaway  = "/post-with-goaway"
    	urlWatchWithGoaway = "/watch-with-goaway"
    )
    
    var (
    	// responseBody is the response body which test GOAWAY server sent for each request,
    	// for watch request, test GOAWAY server push 1 byte in every second.
    	responseBody = []byte("hello")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 12:58:54 UTC 2021
    - 13.9K bytes
    - Viewed (0)
Back to top