Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 695 for WATCH (0.05 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/installer_test.go

    				},
    				{
    					Name:       "cronjobs/status",
    					Namespaced: true,
    					Kind:       "CronJob",
    					Group:      "batch",
    					Version:    "v1",
    					ShortNames: []string{"cj"},
    					Verbs:      []string{"create", "delete", "deletecollection", "get", "list", "patch", "update", "watch"},
    				},
    			},
    			wantAPIResourceDiscovery: []apidiscoveryv2.APIResourceDiscovery{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/watch_test.go

    }
    
    var watchTestTable = []struct {
    	t   watch.EventType
    	obj runtime.Object
    }{
    	{watch.Added, &apitesting.Simple{ObjectMeta: metav1.ObjectMeta{Name: "foo"}}},
    	{watch.Modified, &apitesting.Simple{ObjectMeta: metav1.ObjectMeta{Name: "bar"}}},
    	{watch.Deleted, &apitesting.Simple{ObjectMeta: metav1.ObjectMeta{Name: "bar"}}},
    }
    
    func podWatchTestTable() []struct {
    	t   watch.EventType
    	obj runtime.Object
    } {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 30 17:27:39 UTC 2023
    - 30K bytes
    - Viewed (0)
  3. api/discovery/apis__resource.k8s.io__v1alpha2.json

          "storageVersionHash": "qtdNX2rnDEA=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "PodSchedulingContext",
          "name": "podschedulingcontexts/status",
          "namespaced": true,
          "singularName": "",
          "verbs": [
            "get",
            "patch",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/validation/validation_test.go

    		},
    		expectErrors: []string{"sendInitialEvents: Forbidden: sendInitialEvents is forbidden for list"},
    	}, {
    		name: "valid-watch-default",
    		opts: internalversion.ListOptions{
    			Watch: true,
    		},
    	}, {
    		name: "valid-watch-sendInitialEvents-on",
    		opts: internalversion.ListOptions{
    			Watch:                true,
    			SendInitialEvents:    boolPtrFn(true),
    			ResourceVersionMatch: metav1.ResourceVersionMatchNotOlderThan,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  5. cluster/addons/rbac/cluster-autoscaler/cluster-autoscaler-rbac.yaml

        verbs: ["get", "list", "watch"]
      - apiGroups: ["apps"]
        resources: ["daemonsets", "replicasets"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["apps"]
        resources: ["statefulsets"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["batch"]
        resources: ["jobs"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["policy"]
        resources: ["poddisruptionbudgets"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 12 16:56:45 UTC 2020
    - 2K bytes
    - Viewed (0)
  6. cluster/addons/calico-policy-controller/calico-clusterrole.yaml

          # Used to discover service IPs for advertisement.
          - watch
          - list
          # Used to discover Typhas.
          - get
      - apiGroups: [""]
        resources:
          - nodes/status
        verbs:
          # Needed for clearing NodeNetworkUnavailable flag.
          - patch
          # Calico stores some configuration information in node annotations.
          - update
      # Watch for changes to Kubernetes NetworkPolicies.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 26 02:52:06 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	pod2DeletedAt3.ResourceVersion = "1003"
    
    	allEvents := []watch.Event{
    		{Type: watch.Added, Object: pod1.DeepCopy()},
    		{Type: watch.Modified, Object: pod2.DeepCopy()},
    		{Type: watch.Modified, Object: pod3.DeepCopy()},
    		{Type: watch.Deleted, Object: pod4.DeepCopy()},
    	}
    	fooEvents := []watch.Event{
    		{Type: watch.Added, Object: pod1.DeepCopy()},
    		{Type: watch.Modified, Object: pod2.DeepCopy()},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher.go

    				return nil
    			}
    		}
    		res = &watch.Event{
    			Type:   watch.Bookmark,
    			Object: object,
    		}
    	case e.isDeleted:
    		if !wc.filter(oldObj) {
    			return nil
    		}
    		res = &watch.Event{
    			Type:   watch.Deleted,
    			Object: oldObj,
    		}
    	case e.isCreated:
    		if !wc.filter(curObj) {
    			return nil
    		}
    		res = &watch.Event{
    			Type:   watch.Added,
    			Object: curObj,
    		}
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. api/discovery/apis__rbac.authorization.k8s.io__v1.json

            "update",
            "watch"
          ]
        },
        {
          "kind": "Role",
          "name": "roles",
          "namespaced": true,
          "singularName": "role",
          "storageVersionHash": "7FuwZcIIItM=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        }
      ]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DarwinFileWatcherRegistryFactory.java

    import net.rubygrapefruit.platform.internal.jni.OsxFileEventFunctions.OsxFileWatcher;
    import org.gradle.internal.watch.WatchingNotSupportedException;
    import org.gradle.internal.watch.registry.FileWatcherProbeRegistry;
    import org.gradle.internal.watch.registry.FileWatcherUpdater;
    
    import java.io.File;
    import java.io.IOException;
    import java.util.Collections;
    import java.util.concurrent.BlockingQueue;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top