Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,533 for Watch (0.14 sec)

  1. manifests/charts/istio-control/istio-discovery/templates/clusterrole.yaml

    rules:
      - apiGroups: ["apps"]
        verbs: [ "get", "watch", "list", "update", "patch", "create", "delete" ]
        resources: [ "deployments" ]
      - apiGroups: [""]
        verbs: [ "get", "watch", "list", "update", "patch", "create", "delete" ]
        resources: [ "services" ]
      - apiGroups: [""]
        verbs: [ "get", "watch", "list", "update", "patch", "create", "delete" ]
        resources: [ "serviceaccounts"]
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Nov 09 01:32:06 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/templates/clusterrole.yaml

    rules:
      - apiGroups: ["apps"]
        verbs: [ "get", "watch", "list", "update", "patch", "create", "delete" ]
        resources: [ "deployments" ]
      - apiGroups: [""]
        verbs: [ "get", "watch", "list", "update", "patch", "create", "delete" ]
        resources: [ "services" ]
      - apiGroups: [""]
        verbs: [ "get", "watch", "list", "update", "patch", "create", "delete" ]
        resources: [ "serviceaccounts"]
    {{- end }}
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Thu Nov 09 01:32:06 GMT 2023
    - 5.7K bytes
    - Viewed (0)
  3. 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"]
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Jul 17 21:19:52 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/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"]
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Mon Jul 17 21:19:52 GMT 2023
    - 2.1K bytes
    - Viewed (0)
  5. 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
    Go
    - Registered: Wed Apr 17 22:53:10 GMT 2024
    - Last Modified: Fri Mar 15 08:28:50 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  6. cmd/iam-etcd-store.go

    					if !ok {
    						time.Sleep(1 * time.Second)
    						// Upon an error on watch channel
    						// re-init the watch channel.
    						goto outerLoop
    					}
    					if err := watchResp.Err(); err != nil {
    						iamLogIf(ctx, err)
    						// log and retry.
    						time.Sleep(1 * time.Second)
    						// Upon an error on watch channel
    						// re-init the watch channel.
    						goto outerLoop
    					}
    Go
    - Registered: Sun Apr 14 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 13.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbWatchHandleImpl.java

            this.recursive = recursive;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.SmbWatchHandle#watch()
         */
        @Override
        public List<FileNotifyInformation> watch () throws CIFSException {
            if ( !this.handle.isValid() ) {
                throw new SmbException("Watch was broken by tree disconnect");
            }
            try ( SmbTreeHandleImpl th = this.handle.getTree() ) {
    
    Java
    - Registered: Sun Apr 14 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.5K bytes
    - Viewed (0)
  8. common/scripts/metallb-native.yaml

      - list
      - watch
    - apiGroups:
      - metallb.io
      resources:
      - bgppeers
      verbs:
      - get
      - list
      - watch
    - apiGroups:
      - metallb.io
      resources:
      - l2advertisements
      verbs:
      - get
      - list
      - watch
    - apiGroups:
      - metallb.io
      resources:
      - bgpadvertisements
      verbs:
      - get
      - list
      - watch
    - apiGroups:
    Others
    - Registered: Wed Apr 17 22:53:10 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  9. src/test/java/jcifs/tests/WatchTest.java

            try ( SmbWatchHandle w = this.base.watch(FileNotifyInformation.FILE_NOTIFY_CHANGE_FILE_NAME, false) ) {
                setupWatch(w);
                try ( SmbResource cr = new SmbFile(this.base, "created") ) {
                    cr.createNewFile();
                    assertNotified(w, FileNotifyInformation.FILE_ACTION_ADDED, "created", null);
                }
            }
            catch ( TimeoutException e ) {
    Java
    - Registered: Sun Apr 14 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 8.4K bytes
    - Viewed (0)
  10. manifests/charts/istio-cni/templates/clusterrole.yaml

        operator.istio.io/component: "Cni"
    rules:
      - apiGroups: [""]
        resources: ["events"]
        verbs: ["create", "patch"]
      - apiGroups: [""]
        resources: ["pods"]
        verbs: ["watch", "get", "list"]
    {{- if .Values.cni.repair.repairPods }}
    {{- /*  No privileges needed*/}}
    {{- else if .Values.cni.repair.deletePods }}
      - apiGroups: [""]
        resources: ["pods"]
    Others
    - Registered: Wed Apr 10 22:53:08 GMT 2024
    - Last Modified: Wed Dec 20 22:14:13 GMT 2023
    - 2K bytes
    - Viewed (0)
Back to top