Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 695 for WATCH (0.04 sec)

  1. api/openapi-spec/v3/apis__events.k8s.io__v1_openapi.json

              "in": "query",
              "name": "watch",
              "schema": {
                "type": "boolean",
                "uniqueItems": true
              }
            }
          ]
        },
        "/apis/events.k8s.io/v1/watch/namespaces/{namespace}/events": {
          "get": {
            "description": "watch individual changes to a list of Event. 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
    - 142.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions/apiextensions/v1/customresourcedefinition.go

    	v1 "k8s.io/apiextensions-apiserver/pkg/client/listers/apiextensions/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	watch "k8s.io/apimachinery/pkg/watch"
    	cache "k8s.io/client-go/tools/cache"
    )
    
    // CustomResourceDefinitionInformer provides access to a shared informer and lister for
    // CustomResourceDefinitions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 08 02:16:47 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/client/informers/externalversions/apiextensions/v1beta1/customresourcedefinition.go

    	v1beta1 "k8s.io/apiextensions-apiserver/pkg/client/listers/apiextensions/v1beta1"
    	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	watch "k8s.io/apimachinery/pkg/watch"
    	cache "k8s.io/client-go/tools/cache"
    )
    
    // CustomResourceDefinitionInformer provides access to a shared informer and lister for
    // CustomResourceDefinitions.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 08 02:16:47 UTC 2020
    - 3.9K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/LinuxFileWatcherRegistryFactory.java

    import org.gradle.internal.file.FileType;
    import org.gradle.internal.snapshot.SnapshotHierarchy;
    import org.gradle.internal.watch.registry.FileWatcherProbeRegistry;
    import org.gradle.internal.watch.registry.FileWatcherUpdater;
    
    import java.io.File;
    import java.util.Collection;
    import java.util.concurrent.BlockingQueue;
    import java.util.function.Predicate;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:33 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. api/discovery/apis__networking.k8s.io__v1alpha1.json

          "storageVersionHash": "3APLM23DOxw=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
            "patch",
            "update",
            "watch"
          ]
        },
        {
          "kind": "ServiceCIDR",
          "name": "servicecidrs",
          "namespaced": false,
          "singularName": "servicecidr",
          "storageVersionHash": "3cDF5hqTkLY=",
          "verbs": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/defaulting_test.go

    	}
    
    	// Omit this test when using the watch cache because changing the CRD resets the watch cache's minimum available resource version.
    	// The watch cache is populated by list and watch, which are both tested by this test.
    	// The contents of the watch cache are seen by list with rv=0, which is tested by this test.
    	if !watchCache {
    		t.Logf("verify WATCH sees 'c' in both status and spec")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__certificates.k8s.io__v1alpha1_openapi.json

              "in": "query",
              "name": "watch",
              "schema": {
                "type": "boolean",
                "uniqueItems": true
              }
            }
          ]
        },
        "/apis/certificates.k8s.io/v1alpha1/watch/clustertrustbundles/{name}": {
          "get": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 119K bytes
    - Viewed (0)
  8. api/discovery/apis__admissionregistration.k8s.io__v1beta1.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)
  9. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_cafile_content.go

    		if err := c.watchCAFile(ctx.Done()); err != nil {
    			klog.ErrorS(err, "Failed to watch CA file, will retry later")
    		}
    	}, time.Minute, ctx.Done())
    
    	<-ctx.Done()
    }
    
    func (c *DynamicFileCAContent) watchCAFile(stopCh <-chan struct{}) error {
    	// Trigger a check here to ensure the content will be checked periodically even if the following watch fails.
    	c.queue.Add(workItemKey)
    
    	w, err := fsnotify.NewWatcher()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/resource/result.go

    // resource present, it will be watched, otherwise an error will be returned.
    func (r *Result) Watch(resourceVersion string) (watch.Interface, error) {
    	if r.err != nil {
    		return nil, r.err
    	}
    	if len(r.sources) != 1 {
    		return nil, fmt.Errorf("you may only watch a single resource or type of resource at a time")
    	}
    	w, ok := r.sources[0].(Watchable)
    	if !ok {
    		info, err := r.Infos()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 23:00:24 UTC 2019
    - 7.3K bytes
    - Viewed (0)
Back to top