Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 695 for WATCH (2.34 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/watch.go

    func Convert_v1_InternalEvent_To_v1_WatchEvent(in *InternalEvent, out *WatchEvent, s conversion.Scope) error {
    	return Convert_watch_Event_To_v1_WatchEvent((*watch.Event)(in), out, s)
    }
    
    func Convert_v1_WatchEvent_To_watch_Event(in *WatchEvent, out *watch.Event, s conversion.Scope) error {
    	out.Type = watch.EventType(in.Type)
    	if in.Object.Object != nil {
    		out.Object = in.Object.Object
    	} else if in.Object.Raw != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 18 03:02:16 UTC 2018
    - 2.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package watch
    
    import (
    	"fmt"
    	"sync"
    
    	"k8s.io/klog/v2"
    
    	"k8s.io/apimachinery/pkg/runtime"
    )
    
    // Interface can be implemented by anything that knows how to watch and report changes.
    type Interface interface {
    	// Stop tells the producer that the consumer is done watching, so the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/watch.go

    }
    
    // WatchServer serves a watch.Interface over a websocket or vanilla HTTP.
    type WatchServer struct {
    	Watching watch.Interface
    	Scope    *RequestScope
    
    	// true if websocket messages should use text framing (as opposed to binary framing)
    	UseTextFraming bool
    	// the media type this watch is being served with
    	MediaType string
    	// used to frame the watch stream
    	Framer runtime.Framer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 16:37:25 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  4. releasenotes/notes/secret-watch.yaml

    John Howard <******@****.***> 1631896091 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 17 16:28:11 UTC 2021
    - 177 bytes
    - Viewed (0)
  5. security/pkg/nodeagent/cache/testdata/file-to-watch.txt

    Anubhav <******@****.***> 1659456001 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 02 16:00:01 UTC 2022
    - Viewed (0)
  6. pkg/client/conditions/conditions_test.go

    	tests := []struct {
    		name    string
    		event   watch.Event
    		want    bool
    		wantErr bool
    	}{
    		{
    			name: "Watch type is deleted",
    			event: watch.Event{
    				Type: watch.Deleted,
    			},
    			want:    false,
    			wantErr: true,
    		},
    		{
    			name: "Pod Status is PodSucceeded",
    			event: watch.Event{
    				Type: watch.Added,
    				Object: &corev1.Pod{
    					Status: corev1.PodStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 12 02:48:46 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. api/discovery/aggregated_v2beta1.json

                    "create",
                    "delete",
                    "deletecollection",
                    "get",
                    "list",
                    "patch",
                    "update",
                    "watch"
                  ]
                }
              ],
              "version": "v1"
            }
          ]
        },
        {
          "metadata": {
            "creationTimestamp": null,
            "name": "apps"
          },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-roles.yaml

        - persistentvolumes
        verbs:
        - list
        - watch
      - apiGroups:
        - ""
        resources:
        - nodes
        verbs:
        - get
        - list
        - watch
      - apiGroups:
        - ""
        resources:
        - nodes/status
        verbs:
        - patch
        - update
      - apiGroups:
        - ""
        resources:
        - pods
        verbs:
        - list
        - watch
      - apiGroups:
        - ""
        - events.k8s.io
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  9. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/controller_policy.go

    				rbacv1helpers.NewRule("get", "list", "watch").Groups(extensionsGroup, appsGroup).Resources("deployments").RuleOrDie(),
    				rbacv1helpers.NewRule("get", "list", "watch").Groups(appsGroup, extensionsGroup).Resources("replicasets").RuleOrDie(),
    				rbacv1helpers.NewRule("get", "list", "watch").Groups(legacyGroup).Resources("replicationcontrollers").RuleOrDie(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  10. manifests/charts/istio-control/istio-discovery/templates/reader-clusterrole.yaml

        resources: ["gateways"]
        verbs: ["get", "watch", "list"]
      - apiGroups: ["apiextensions.k8s.io"]
        resources: ["customresourcedefinitions"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["discovery.k8s.io"]
        resources: ["endpointslices"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["{{ $mcsAPIGroup }}"]
        resources: ["serviceexports"]
        verbs: ["get", "list", "watch", "create", "delete"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top