Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 99 for Unbounded (0.79 sec)

  1. src/text/template/parse/node.go

    	for _, c := range p.Cmds {
    		n.append(c.Copy().(*CommandNode))
    	}
    	return n
    }
    
    func (p *PipeNode) Copy() Node {
    	return p.CopyPipe()
    }
    
    // ActionNode holds an action (something bounded by delimiters).
    // Control actions have their own nodes; ActionNode represents simple
    // ones such as field evaluations and parenthesized pipelines.
    type ActionNode struct {
    	NodeType
    	Pos
    	tr   *Tree
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/prove.go

    					panic("unexpected integer size")
    				}
    				v.AuxInt = 0
    				break // Be sure not to fallthrough - this is no longer OpRsh.
    			}
    			// If the Rsh hasn't been replaced with 0, still check if it is bounded.
    			fallthrough
    		case OpLsh8x8, OpLsh8x16, OpLsh8x32, OpLsh8x64,
    			OpLsh16x8, OpLsh16x16, OpLsh16x32, OpLsh16x64,
    			OpLsh32x8, OpLsh32x16, OpLsh32x32, OpLsh32x64,
    			OpLsh64x8, OpLsh64x16, OpLsh64x32, OpLsh64x64,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  3. cmd/sts-handlers.go

    	// because there will be a policy mapping stored on drives whose
    	// filename is this parentUser: therefore, it needs to have only valid
    	// filename characters and needs to have bounded length.
    	{
    		h := sha256.New()
    		h.Write([]byte("openid:" + subFromToken + ":" + issFromToken))
    		bs := h.Sum(nil)
    		cred.ParentUser = base64.RawURLEncoding.EncodeToString(bs)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    	if uniqueMapCleanup != nil {
    		select {
    		case uniqueMapCleanup <- struct{}{}:
    		default:
    		}
    	}
    
    	// Clear central sudog cache.
    	// Leave per-P caches alone, they have strictly bounded size.
    	// Disconnect cached list before dropping it on the floor,
    	// so that a dangling ref to one entry does not pin all of them.
    	lock(&sched.sudoglock)
    	var sg, sgnext *sudog
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/switch.go

    				newCases = append(newCases, &ir.CaseClause{
    					List: []ir.Node{ir.NewInt(base.Pos, int64(i))},
    					Body: []ir.Node{c.jmp},
    				})
    			}
    			// TODO: add len(newCases) case, mark switch as bounded
    			sw2 := ir.NewSwitchStmt(base.Pos, caseVar, newCases)
    			sw.Compiled.Append(typecheck.Stmt(sw2))
    			interfaceCases = interfaceCases[:0]
    		}
    
    		if anyGoto != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    // b2i32 translates a boolean value to 0 or 1.
    func b2i32(b bool) int32 {
    	if b {
    		return 1
    	}
    	return 0
    }
    
    // shiftIsBounded reports whether (left/right) shift Value v is known to be bounded.
    // A shift is bounded if it is shifting by less than the width of the shifted value.
    func shiftIsBounded(v *Value) bool {
    	return v.AuxInt != 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/builtin.go

    	}
    
    	length := typecheck.Conv(n.Len, types.Types[types.TINT])
    	copylen := ir.NewUnaryExpr(base.Pos, ir.OLEN, n.Cap)
    	copyptr := ir.NewUnaryExpr(base.Pos, ir.OSPTR, n.Cap)
    
    	if !t.Elem().HasPointers() && n.Bounded() {
    		// When len(to)==len(from) and elements have no pointers:
    		// replace make+copy with runtime.mallocgc+runtime.memmove.
    
    		// We do not check for overflow of len(to)*elem.Width here
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  8. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	// updating each pod's status one at a time. This is performed serially, and
    	// can take a while if we're processing each node serially as well. So we
    	// process them with bounded concurrency instead, since most of the time is
    	// spent waiting on io.
    	workqueue.ParallelizeUntil(ctx, nc.nodeUpdateWorkerSize, len(nodes), updateNodeFunc)
    
    	nc.handleDisruption(ctx, zoneToNodeConditions, nodes)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  9. src/math/big/int.go

    	// Calculate the quotient and cosequences using Collins' stopping condition.
    	// Note that overflow of a Word is not possible when computing the remainder
    	// sequence and cosequences since the cosequence size is bounded by the input size.
    	// See section 4.2 of Jebelean for details.
    	for a2 >= v2 && a1-a2 >= v1+v2 {
    		q, r := a1/a2, a1%a2
    		a1, a2 = a2, r
    		u0, u1, u2 = u1, u2, u1+q*u2
    		v0, v1, v2 = v1, v2, v1+q*v2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/order.go

    		return
    	}
    
    	mk := as.Y.(*ir.MakeExpr)
    	if mk.Esc() == ir.EscNone || mk.Len == nil || mk.Cap != nil {
    		return
    	}
    	mk.SetOp(ir.OMAKESLICECOPY)
    	mk.Cap = cp.Y
    	// Set bounded when m = OMAKESLICE([]T, len(s)); OCOPY(m, s)
    	mk.SetBounded(mk.Len.Op() == ir.OLEN && ir.SameSafeExpr(mk.Len.(*ir.UnaryExpr).X, cp.Y))
    	as.Y = typecheck.Expr(mk)
    	s[1] = nil // remove separate copy call
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
Back to top