Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 695 for WATCH (0.06 sec)

  1. pkg/config/schema/kubeclient/common_test.go

    			return c.Kube().NetworkingV1().NetworkPolicies(namespace).List(context.Background(), o)
    		},
    		func(c ClientGetter, namespace string, o metav1.ListOptions) (watch.Interface, error) {
    			return c.Kube().NetworkingV1().NetworkPolicies(namespace).Watch(context.Background(), o)
    		},
    	)
    
    	ns := &corev1.Namespace{ObjectMeta: metav1.ObjectMeta{Name: "funkyns"}}
    
    	client := kube.NewFakeClient(ns)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. samples/addons/kiali.yaml

    rules:
    - apiGroups: [""]
      resources:
      - configmaps
      - endpoints
      - pods/log
      verbs:
      - get
      - list
      - watch
    - apiGroups: [""]
      resources:
      - namespaces
      - pods
      - replicationcontrollers
      - services
      verbs:
      - get
      - list
      - watch
      - patch
    - apiGroups: [""]
      resources:
      - pods/portforward
      verbs:
      - create
      - post
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/filters/watch_termination_test.go

    		},
    		{
    			name:               "request is not a WATCH, not added into wait group",
    			requestInfo:        &apirequest.RequestInfo{Verb: "get"},
    			handlerInvoked:     1,
    			statusCodeExpected: http.StatusOK,
    		},
    		{
    			name:                    "request is a WATCH, wait group is in waiting mode",
    			requestInfo:             &apirequest.RequestInfo{Verb: "watch"},
    			wg:                      &fakeRequestWaitGroup{waiting: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 15:49:49 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

              "in": "query",
              "name": "watch",
              "schema": {
                "type": "boolean",
                "uniqueItems": true
              }
            }
          ]
        },
        "/apis/discovery.k8s.io/v1/watch/namespaces/{namespace}/endpointslices": {
          "get": {
            "description": "watch individual changes to a list of EndpointSlice. 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
    - 146.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    		Into(result)
    	return
    }
    
    // Watch returns a watch.Interface that watches the requested customResourceDefinitions.
    func (c *customResourceDefinitions) Watch(ctx context.Context, opts v1.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
    - 12.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/file_system_watching.adoc

    Run the build with the '--watch-fs' flag to force file system watching for a build.
    
    To force file system watching for all builds (unless disabled with `--no-watch-fs`), add the following value to `gradle.properties`:
    
    ====
    .gradle.properties
    [source,properties]
    ----
    org.gradle.vfs.watch=true
    ----
    ====
    
    == Disable
    
    To disable file system watching:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 16:37:56 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. api/discovery/apis__batch__v1.json

          "storageVersionHash": "sd5LIXh4Fjs=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "CronJob",
          "name": "cronjobs/status",
          "namespaced": true,
          "singularName": "",
          "verbs": [
            "get",
            "patch",
            "update"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. pkg/util/filesystem/watcher.go

    type FSWatcher interface {
    	// Initializes the watcher with the given watch handlers.
    	// Called before all other methods.
    	Init(FSEventHandler, FSErrorHandler) error
    
    	// Starts listening for events and errors.
    	// When an event or error occurs, the corresponding handler is called.
    	Run()
    
    	// Add a filesystem path to watch
    	AddWatch(path string) error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 14 23:09:15 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/fake/fake_example.go

    		if label.Matches(labels.Set(item.Labels)) {
    			list.Items = append(list.Items, item)
    		}
    	}
    	return list, err
    }
    
    // Watch returns a watch.Interface that watches the requested examples.
    func (c *FakeExamples) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error) {
    	return c.Fake.
    		InvokesWatch(testing.NewWatchAction(examplesResource, c.ns, opts))
    
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	defaultUpperBoundCapacity = 100 * 1024
    )
    
    // watchCacheEvent is a single "watch event" that is send to users of
    // watchCache. Additionally to a typical "watch.Event" it contains
    // the previous value of the object to enable proper filtering in the
    // upper layers.
    type watchCacheEvent struct {
    	Type            watch.EventType
    	Object          runtime.Object
    	ObjLabels       labels.Set
    	ObjFields       fields.Set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top