Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 218 for endPod (0.33 sec)

  1. cmd/metacache_gen.go

    		zb0001--
    		field, err = dc.ReadMapKeyPtr()
    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		switch msgp.UnsafeString(field) {
    		case "end":
    			z.ended, err = dc.ReadTime()
    			if err != nil {
    				err = msgp.WrapError(err, "ended")
    				return
    			}
    		case "st":
    			z.started, err = dc.ReadTime()
    			if err != nil {
    				err = msgp.WrapError(err, "started")
    				return
    			}
    		case "lh":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Nov 08 18:26:08 UTC 2021
    - 10K bytes
    - Viewed (0)
  2. cmd/metacache.go

    type metacache struct {
    	// do not re-arrange the struct this struct has been ordered to use less
    	// space - if you do so please run https://github.com/orijtech/structslop
    	// and verify if your changes are optimal.
    	ended        time.Time  `msg:"end"`
    	started      time.Time  `msg:"st"`
    	lastHandout  time.Time  `msg:"lh"`
    	lastUpdate   time.Time  `msg:"u"`
    	bucket       string     `msg:"b"`
    	filter       string     `msg:"flt"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/devicemanager/plugin/v1beta1/client.go

    	stream, err := c.client.ListAndWatch(context.Background(), &api.Empty{})
    	if err != nil {
    		klog.ErrorS(err, "ListAndWatch ended unexpectedly for device plugin", "resource", c.resource)
    		return
    	}
    
    	for {
    		response, err := stream.Recv()
    		if err != nil {
    			klog.ErrorS(err, "ListAndWatch ended unexpectedly for device plugin", "resource", c.resource)
    			return
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:35:13 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_fail_newline.txt

    stdout '^skipping\n'
    stdout '^ok\s+example/skip'
    
    # If the output is streamed and the test passes, we can't tell whether it ended
    # in a partial line, and don't want to emit any extra output in the
    # overwhelmingly common case that it did not.
    # (In theory we could hook the 'os' package to report whether output
    # was emitted and whether it ended in a newline, but that seems too invasive.)
    go test
    ! stderr .
    stdout '^skippingok\s+example/skip'
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 04 21:33:23 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  5. src/net/http/header.go

    		}
    		// Check that start pos is on a valid token boundary.
    		if sp > 0 && !isTokenBoundary(v[sp-1]) {
    			continue
    		}
    		// Check that end pos is on a valid token boundary.
    		if endPos := sp + len(token); endPos != len(v) && !isTokenBoundary(v[endPos]) {
    			continue
    		}
    		if ascii.EqualFold(v[sp:sp+len(token)], token) {
    			return true
    		}
    	}
    	return false
    }
    
    func isTokenBoundary(b byte) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/mod/modfile/read.go

    	}
    	start := tok.pos
    	end := tok.endPos
    	tokens := []string{tok.text}
    	for {
    		tok := in.lex()
    		if tok.kind.isEOL() {
    			return &Line{
    				Start:   start,
    				Token:   tokens,
    				End:     end,
    				InBlock: true,
    			}
    		}
    		tokens = append(tokens, tok.text)
    		end = tok.endPos
    	}
    }
    
    var (
    	slashSlash = []byte("//")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. src/text/template/parse/node.go

    }
    
    // endNode represents an {{end}} action.
    // It does not appear in the final parse tree.
    type endNode struct {
    	NodeType
    	Pos
    	tr *Tree
    }
    
    func (t *Tree) newEnd(pos Pos) *endNode {
    	return &endNode{tr: t, NodeType: nodeEnd, Pos: pos}
    }
    
    func (e *endNode) String() string {
    	return "{{end}}"
    }
    
    func (e *endNode) writeTo(sb *strings.Builder) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/base/timings.go

    			var label string
    			var events []*event
    			if pt.start {
    				// previous phase started
    				label = pt.label
    				events = t.events[i-1]
    				if qt.start {
    					// start implicitly ended previous phase; nothing to do
    				} else {
    					// stop ended previous phase; append stop labels, if any
    					if qt.label != "" {
    						label += ":" + qt.label
    					}
    					// events associated with stop replace prior events
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/imports/build.go

    			// Note that ended==false here means that inSlashStar==false,
    			// since seeing a /* would have set ended==true.
    			end = len(content) - len(p)
    			continue Lines
    		}
    		if !bytes.HasPrefix(line, bSlashSlash) { // Not comment line
    			ended = true
    		}
    
    		if !inSlashStar && isGoBuildComment(line) {
    			if goBuild != nil {
    				return nil, nil, false, errMultipleGoBuild
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. docs/security/security.md

    | 5.x     | ✅                  | APIs subject to change in alpha releases.    |
    | 4.x     | ✅                  | Android 5.0+ (API level 21+) and on Java 8+. |
    | 3.x     | ❌ Ended 2021-12-31 | Android 2.3+ (API level 9+) and Java 7+.     |
    
    
    ## Reporting a Vulnerability
    
    Square recognizes the important contributions the security research community
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 27 10:19:17 UTC 2022
    - 1.4K bytes
    - Viewed (0)
Back to top