Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 695 for WATCH (0.03 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    	// ParseResourceVersion takes a resource version argument and
    	// converts it to the storage backend. For watch we should pass to helper.Watch().
    	// Because resourceVersion is an opaque value, the default watch
    	// behavior for non-zero watch is to watch the next value (if you pass
    	// "1", you will see updates from "2" onwards).
    	ParseResourceVersion(resourceVersion string) (uint64, error)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. cluster/addons/kube-network-policies/kube-network-policies-rbac.yaml

    rules:
      - apiGroups: [""]
        resources:
          - pods
          - nodes
          - namespaces
        verbs:
          - get
          - watch
          - list
      # Watch for changes to Kubernetes NetworkPolicies.
      - apiGroups: ["networking.k8s.io"]
        resources:
          - networkpolicies
        verbs:
          - watch
          - list
    ---
    kind: ClusterRoleBinding
    apiVersion: rbac.authorization.k8s.io/v1
    metadata:
      name: kube-network-policies
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 21 10:01:31 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/internalversion/scheme/register_test.go

    		t.Errorf("unexpected: %v %v %v", gvks[0], unversioned, err)
    	}
    
    	actual = &metav1.ListOptions{}
    	if err := ParameterCodec.DecodeParameters(url.Values{"watch": []string{"1"}}, metav1.SchemeGroupVersion, actual); err != nil {
    		t.Fatal(err)
    	}
    	if !actual.Watch {
    		t.Errorf("unexpected watch decode: %#v", actual)
    	}
    
    	// check ParameterCodec
    	query, err := ParameterCodec.EncodeParameters(in, metav1.SchemeGroupVersion)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/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: Fri Apr 09 06:03:32 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/testing/utils.go

    	}
    }
    
    func testCheckResult(t *testing.T, w watch.Interface, expectEvent watch.Event) {
    	testCheckResultFunc(t, w, func(actualEvent watch.Event) {
    		expectNoDiff(t, "incorrect event", expectEvent, actualEvent)
    	})
    }
    
    func testCheckResultFunc(t *testing.T, w watch.Interface, check func(actualEvent watch.Event)) {
    	select {
    	case res := <-w.ResultChan():
    		obj := res.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 22 07:26:55 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_serving_content.go

    	}
    	defer w.Close()
    
    	if err := w.Add(c.certFile); err != nil {
    		return fmt.Errorf("error adding watch for file %s: %v", c.certFile, err)
    	}
    	if err := w.Add(c.keyFile); err != nil {
    		return fmt.Errorf("error adding watch for file %s: %v", c.keyFile, err)
    	}
    	// Trigger a check in case the file is updated before the watch starts.
    	c.queue.Add(workItemKey)
    
    	for {
    		select {
    		case e := <-w.Events:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__networking.k8s.io__v1_openapi.json

              "in": "query",
              "name": "watch",
              "schema": {
                "type": "boolean",
                "uniqueItems": true
              }
            }
          ]
        },
        "/apis/networking.k8s.io/v1/watch/ingressclasses": {
          "get": {
            "description": "watch individual changes to a list of IngressClass. deprecated: use the 'watch' parameter with a list operation instead.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 324.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher_test.go

    	}
    
    	w, err := store.watcher.Watch(ctx, "/abc", int64(102), requestOpts)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer w.Stop()
    
    	actualEvent := <-w.ResultChan()
    	if actualEvent.Type != watch.Error {
    		t.Fatalf("Unexpected type of the event: %v, expected: %v", actualEvent.Type, watch.Error)
    	}
    	actualErr, ok := actualEvent.Object.(*metav1.Status)
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/customresourcedefinition.go

    		Into(result)
    	return
    }
    
    // Watch returns a watch.Interface that watches the requested customResourceDefinitions.
    func (c *customResourceDefinitions) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error) {
    	var timeout time.Duration
    	if opts.TimeoutSeconds != nil {
    		timeout = time.Duration(*opts.TimeoutSeconds) * time.Second
    	}
    	opts.Watch = true
    	return c.client.Get().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    	fs.BoolVar(&s.EnableWatchCache, "watch-cache", s.EnableWatchCache,
    		"Enable watch caching in the apiserver")
    
    	fs.IntVar(&s.DefaultWatchCacheSize, "default-watch-cache-size", s.DefaultWatchCacheSize,
    		"Default watch cache size. If zero, watch cache will be disabled for resources that do not have a default watch size set.")
    
    	fs.MarkDeprecated("default-watch-cache-size",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
Back to top