Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 679 for lasta (0.04 sec)

  1. src/crypto/aes/gcm_ppc64x.s

    	XXLOR	VS10, VS10, V23		// Save possible last key
    	BLT	CR2, final_block_last
    	VCIPHER_1X2_KEYS(V15, VS10, VS11)	// Encrypt V15 with next 2 keys
    	XXLOR	VS12, VS12, V23		// Save possible last key
    	BEQ	CR2, final_block_last
    	VCIPHER_1X2_KEYS(V15, VS12, VS13) // Encrypt V15 with last 2 keys
    	XXLOR	VS14, VS14, V23		// Save last key
    final_block_last:
    	VCIPHERLAST V15, V23, V15	// Finish encryption
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. manifests/charts/istio-control/istio-discovery/files/kube-gateway.yaml

    apiVersion: v1
    kind: ServiceAccount
    metadata:
      name: {{.ServiceAccount | quote}}
      namespace: {{.Namespace | quote}}
      annotations:
        {{- toJsonMap (omit .InfrastructureAnnotations "kubectl.kubernetes.io/last-applied-configuration" "gateway.istio.io/name-override" "gateway.istio.io/service-account" "gateway.istio.io/controller-version") | nindent 4 }}
      labels:
        {{- toJsonMap
          .InfrastructureLabels
          (strdict
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. src/go/doc/example.go

    	// Do nothing if there is no "Output:" or "Unordered output:" comment.
    	i, last := lastComment(body, comments)
    	if last == nil || !outputPrefix.MatchString(last.Text()) {
    		return body, comments
    	}
    
    	// Copy body and comments, as the originals may be used elsewhere.
    	newBody := &ast.BlockStmt{
    		Lbrace: body.Lbrace,
    		List:   body.List,
    		Rbrace: last.Pos(),
    	}
    	newComments := make([]*ast.CommentGroup, len(comments)-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  4. pkg/scheduler/metrics/metrics.go

    			Subsystem: SchedulerSubsystem,
    			Name:      "pod_scheduling_duration_seconds",
    			Help:      "E2e latency for a pod being scheduled which may include multiple scheduling attempts.",
    			// Start with 10ms with the last bucket being [~88m, Inf).
    			Buckets:           metrics.ExponentialBuckets(0.01, 2, 20),
    			StabilityLevel:    metrics.STABLE,
    			DeprecatedVersion: "1.29.0",
    		},
    		[]string{"attempts"})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 08:22:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  5. src/runtime/trace.go

    	}
    	statusWriter.flush().end()
    
    	// Read everything out of the last gen's CPU profile buffer.
    	traceReadCPU(gen)
    
    	// Flush CPU samples, stacks, and strings for the last generation. This is safe,
    	// because we're now certain no M is writing to the last generation.
    	//
    	// Ordering is important here. traceCPUFlush may generate new stacks and dumping
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/decompose.go

    	for i := len(f.Names) - 1; i >= 0; i-- {
    		loc := f.Names[i]
    		vals := f.NamedValues[*loc]
    		last := len(vals)
    		for j := len(vals) - 1; j >= 0; j-- {
    			if vals[j].Op == OpInvalid {
    				last--
    				vals[j] = vals[last]
    				vals[last] = nil
    			}
    		}
    		if last < len(vals) {
    			f.NamedValues[*loc] = vals[:last]
    		}
    		if len(vals) == 0 {
    			delete(f.NamedValues, *loc)
    			end--
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 21:22:15 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  7. src/net/http/cookie.go

    		case c == '-':
    			// Byte before dash cannot be dot.
    			if last == '.' {
    				return false
    			}
    			partlen++
    		case c == '.':
    			// Byte before dot cannot be dot, dash.
    			if last == '.' || last == '-' {
    				return false
    			}
    			if partlen > 63 || partlen == 0 {
    				return false
    			}
    			partlen = 0
    		}
    		last = c
    	}
    	if last == '-' || partlen > 63 {
    		return false
    	}
    
    	return ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. src/runtime/mspanset.go

    	// popping its corresponding mspan) by the time we get here. Because
    	// we're the last popper, we also don't have to worry about concurrent
    	// pushers (there can't be any). Note that we may not be the popper
    	// which claimed the last slot in the block, we're just the last one
    	// to finish popping.
    	if block.popped.Add(1) == spanSetBlockEntries {
    		// Clear the block's pointer.
    		blockp.StoreNoWB(nil)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm64/obj7.go

    	end := c.ctxt.EndUnsafePoint(bls, c.newprog, -1)
    
    	var last *obj.Prog
    	for last = c.cursym.Func().Text; last.Link != nil; last = last.Link {
    	}
    
    	// Now we are at the end of the function, but logically
    	// we are still in function prologue. We need to fix the
    	// SP data and PCDATA.
    	spfix := obj.Appendp(last, c.newprog)
    	spfix.As = obj.ANOP
    	spfix.Spadj = -framesize
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 05:46:32 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  10. src/cmd/cover/cover.go

    	for {
    		// Find first statement that affects flow of control (break, continue, if, etc.).
    		// It will be the last statement of this basic block.
    		var last int
    		end := blockEnd
    		for last = 0; last < len(list); last++ {
    			stmt := list[last]
    			end = f.statementBoundary(stmt)
    			if f.endsBasicSourceBlock(stmt) {
    				// If it is a labeled statement, we need to place a counter between
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top