Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for parseRow (0.12 sec)

  1. pkg/controller/volume/pvcprotection/pvc_protection_controller.go

    		// where it is blocking deletion of a PVC not referenced by Y, otherwise
    		// such PVC will never be deleted.
    		if oldPod := c.parsePod(old); oldPod != nil && oldPod.UID != pod.UID {
    			c.enqueuePVCs(logger, oldPod, true)
    		}
    	}
    }
    
    func (*Controller) parsePod(obj interface{}) *v1.Pod {
    	if obj == nil {
    		return nil
    	}
    	pod, ok := obj.(*v1.Pod)
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/inline.go

    			parser = parseAutoLinkOrHTML
    		case '[':
    			parser = parseLinkOpen
    		case '!':
    			parser = parseImageOpen
    		case '_', '*':
    			parser = parseEmph
    		case '.':
    			if p.SmartDot {
    				parser = parseDot
    			}
    		case '-':
    			if p.SmartDash {
    				parser = parseDash
    			}
    		case '"', '\'':
    			if p.SmartQuote {
    				parser = parseEmph
    			}
    		case '~':
    			if p.Strikethrough {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top