Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 405 for monitors (0.14 sec)

  1. pkg/controller/resourcequota/resource_quota_monitor.go

    	// Stop any running monitors.
    	qm.monitorLock.Lock()
    	defer qm.monitorLock.Unlock()
    	monitors := qm.monitors
    	stopped := 0
    	for _, monitor := range monitors {
    		if monitor.stopCh != nil {
    			stopped++
    			close(monitor.stopCh)
    		}
    	}
    	logger.Info("QuotaMonitor stopped monitors", "stopped", stopped, "total", len(monitors))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. pkg/controller/garbagecollector/graph_builder.go

    	<-gb.informersStarted
    
    	monitors := gb.monitors
    	started := 0
    	for _, monitor := range monitors {
    		if monitor.stopCh == nil {
    			monitor.stopCh = make(chan struct{})
    			gb.sharedInformers.Start(gb.stopCh)
    			go monitor.Run()
    			started++
    		}
    	}
    	logger.V(4).Info("started new monitors", "new", started, "current", len(monitors))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/core/v1/cephfspersistentvolumesource.go

    // with apply.
    type CephFSPersistentVolumeSourceApplyConfiguration struct {
    	Monitors   []string                           `json:"monitors,omitempty"`
    	Path       *string                            `json:"path,omitempty"`
    	User       *string                            `json:"user,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/cephfsvolumesource.go

    package v1
    
    // CephFSVolumeSourceApplyConfiguration represents an declarative configuration of the CephFSVolumeSource type for use
    // with apply.
    type CephFSVolumeSourceApplyConfiguration struct {
    	Monitors   []string                                `json:"monitors,omitempty"`
    	Path       *string                                 `json:"path,omitempty"`
    	User       *string                                 `json:"user,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/core.v1.PersistentVolume.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.PersistentVolume.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/HEAD/storage.k8s.io.v1beta1.VolumeAttachment.yaml

            readOnly: true
            secretName: secretNameValue
            secretNamespace: secretNamespaceValue
            shareName: shareNameValue
          capacity:
            capacityKey: "0"
          cephfs:
            monitors:
            - monitorsValue
            path: pathValue
            readOnly: true
            secretFile: secretFileValue
            secretRef:
              name: nameValue
              namespace: namespaceValue
            user: userValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1beta1.VolumeAttachment.yaml

            readOnly: true
            secretName: secretNameValue
            secretNamespace: secretNamespaceValue
            shareName: shareNameValue
          capacity:
            capacityKey: "0"
          cephfs:
            monitors:
            - monitorsValue
            path: pathValue
            readOnly: true
            secretFile: secretFileValue
            secretRef:
              name: nameValue
              namespace: namespaceValue
            user: userValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/testdata/v1.29.0/storage.k8s.io.v1alpha1.VolumeAttachment.json

            },
            "nfs": {
              "server": "serverValue",
              "path": "pathValue",
              "readOnly": true
            },
            "rbd": {
              "monitors": [
                "monitorsValue"
              ],
              "image": "imageValue",
              "fsType": "fsTypeValue",
              "pool": "poolValue",
              "user": "userValue",
              "keyring": "keyringValue",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1alpha1.VolumeAttachment.yaml

            readOnly: true
            secretName: secretNameValue
            secretNamespace: secretNamespaceValue
            shareName: shareNameValue
          capacity:
            capacityKey: "0"
          cephfs:
            monitors:
            - monitorsValue
            path: pathValue
            readOnly: true
            secretFile: secretFileValue
            secretRef:
              name: nameValue
              namespace: namespaceValue
            user: userValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top