Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 695 for WATCH (0.17 sec)

  1. pkg/config/schema/codegen/templates/clients.go.tmpl

    		}
    		w = func(options metav1.ListOptions) (watch.Interface, error) {
    			return c.{{.ClientGetter}}().{{ .ClientGroupPath }}().{{ .ClientTypePath }}({{if not .Resource.ClusterScoped}}opts.Namespace{{end}}).Watch(context.Background(), options)
    		}
    	{{- end }}
    {{- end }}
      default:
        panic(fmt.Sprintf("Unknown type %v", g))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 13:57:51 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/fake/clientset_generated.go

    	cs.AddReactor("*", "*", testing.ObjectReaction(o))
    	cs.AddWatchReactor("*", func(action testing.Action) (handled bool, ret watch.Interface, err error) {
    		gvr := action.GetResource()
    		ns := action.GetNamespace()
    		watch, err := o.Watch(gvr, ns)
    		if err != nil {
    			return false, nil, err
    		}
    		return true, watch, nil
    	})
    
    	return cs
    }
    
    // Clientset implements clientset.Interface. Meant to be embedded into a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 21:36:26 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/watch/mux_test.go

    	}
    
    	m.Shutdown()
    
    	wg.Wait()
    }
    
    func TestBroadcasterWatcherClose(t *testing.T) {
    	m := NewBroadcaster(0, WaitIfChannelFull)
    	w, err := m.Watch()
    	if err != nil {
    		t.Fatalf("Unable start event watcher: '%v' (will not retry!)", err)
    	}
    	w2, err := m.Watch()
    	if err != nil {
    		t.Fatalf("Unable start event watcher: '%v' (will not retry!)", err)
    	}
    	w.Stop()
    	m.Shutdown()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 16 15:26:25 UTC 2022
    - 8K bytes
    - Viewed (0)
  4. api/discovery/apis__admissionregistration.k8s.io__v1alpha1.json

          "storageVersionHash": "6OxvlMmQ6is=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "ValidatingAdmissionPolicy",
          "name": "validatingadmissionpolicies/status",
          "namespaced": false,
          "singularName": "",
          "verbs": [
            "get",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		// Add grpc context metadata to watch and progress notify requests done by cacher to:
    		// * Prevent starvation of watch opened by cacher, by moving it to separate Watch RPC than watch request that bypass cacher.
    		// * Ensure that progress notification requests are executed on the same Watch RPC as their watch, which is required for it to work.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. istioctl/pkg/wait/wait_test.go

    				gvr := action.GetResource()
    				ns := action.GetNamespace()
    				watch, err := fc.Tracker().Watch(gvr, ns)
    				if err != nil {
    					return false, nil, err
    				}
    				// Kubernetes Fake watches do not add initial state, but real server does
    				// https://kubernetes.io/docs/reference/using-api/api-concepts/#semantics-for-watch
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/response.go

    	// that we're effectively serializing the whole watch event, but storing
    	// it in serializations of the Object within the watch event.
    	identifier := watchEncoderIdentifier{
    		Name:            "watch",
    		EmbeddedEncoder: string(e.embeddedEncoder.Identifier()),
    		Encoder:         string(e.encoder.Identifier()),
    		EventType:       string(eventType),
    	}
    
    	result, err := json.Marshal(identifier)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 09:07:03 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  8. api/discovery/apis__flowcontrol.apiserver.k8s.io__v1beta3.json

          "storageVersionHash": "GJVAJZSZBIw=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "FlowSchema",
          "name": "flowschemas/status",
          "namespaced": false,
          "singularName": "",
          "verbs": [
            "get",
            "patch",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 25 06:24:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. api/discovery/apis__networking.k8s.io__v1.json

          "storageVersionHash": "l/iqIbDgFyQ=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "Ingress",
          "name": "ingresses",
          "namespaced": true,
          "shortNames": [
            "ing"
          ],
          "singularName": "ingress",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/artifacts/openapi/swagger-with-shared-parameters.json

            },
            {
              "$ref": "#/parameters/watch--CFxmTDM"
            }
          ]
        },
        "/api/v1/watch/configmaps": {
          "get": {
            "consumes": [
              "*/*"
            ],
            "description": "watch individual changes to a list of ConfigMap. deprecated: use the 'watch' parameter with a list operation instead.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 2.3M bytes
    - Viewed (0)
Back to top