Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 63 for tabwidth (2.44 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    	}
    }
    
    func (ust *uniformScenarioThread) callK(k int) {
    	if k >= ust.nCalls {
    		return
    	}
    	maxWidth := float64(uint64max(ust.uc.initialSeats, ust.uc.finalSeats))
    	ust.uss.seatDemandIntegratorCheck.Add(maxWidth)
    	returnSeatDemand := func(time.Time) { ust.uss.seatDemandIntegratorCheck.Add(-maxWidth) }
    	ctx := context.Background()
    	username := fmt.Sprintf("%d:%d:%d", ust.i, ust.j, k)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/pgen.go

    			continue
    		}
    		if !n.Used() {
    			fn.DebugInfo.(*ssa.FuncDebug).OptDcl = fn.Dcl[i:]
    			fn.Dcl = fn.Dcl[:i]
    			break
    		}
    		types.CalcSize(n.Type())
    		w := n.Type().Size()
    		if w >= types.MaxWidth || w < 0 {
    			base.Fatalf("bad width")
    		}
    		if w == 0 && lastHasPtr {
    			// Pad between a pointer-containing object and a zero-sized object.
    			// This prevents a pointer to the zero-sized object from being interpreted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/typecheck.go

    		if dostrcmp > 1 {
    			// Already in the process of diagnosing an error.
    			return f1
    		}
    		if f2 != nil {
    			base.Errorf("%v is both field and method", n.Sel)
    		}
    		if f1.Offset == types.BADWIDTH {
    			base.Fatalf("Lookdot badwidth t=%v, f1=%v@%p", t, f1, f1)
    		}
    		n.Selection = f1
    		n.SetType(f1.Type)
    		if t.IsInterface() {
    			if n.X.Type().IsPtr() {
    				star := ir.NewStarExpr(base.Pos, n.X)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"CommentedNode", Type, 0},
    		{"CommentedNode.Comments", Field, 0},
    		{"CommentedNode.Node", Field, 0},
    		{"Config", Type, 0},
    		{"Config.Indent", Field, 1},
    		{"Config.Mode", Field, 0},
    		{"Config.Tabwidth", Field, 0},
    		{"Fprint", Func, 0},
    		{"Mode", Type, 0},
    		{"RawFormat", Const, 0},
    		{"SourcePos", Const, 0},
    		{"TabIndent", Const, 0},
    		{"UseSpaces", Const, 0},
    	},
    	"go/scanner": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/type.go

    	// the function name node.
    	Nname Object
    
    	// Offset in bytes of this field or method within its enclosing struct
    	// or interface Type. For parameters, this is BADWIDTH.
    	Offset int64
    }
    
    const (
    	fieldIsDDD = 1 << iota // field is ... argument
    	fieldNointerface
    )
    
    func (f *Field) IsDDD() bool       { return f.flags&fieldIsDDD != 0 }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/assign.go

    		if tmp, ok := l.(*ir.Name); !ok || !tmp.AutoTemp() || !types.Identical(tmp.Type(), r.Type) {
    			base.FatalfAt(l.Pos(), "assigning %v to %+v", r.Type, l)
    		}
    
    		res := ir.NewResultExpr(base.Pos, nil, types.BADWIDTH)
    		res.Index = int64(i)
    		res.SetType(r.Type)
    		res.SetTypecheck(1)
    
    		nn.Append(ir.NewAssignStmt(base.Pos, l, res))
    	}
    	return nn
    }
    
    // check assign expression list to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/wasm/ssa.go

       Global 1 is CTXT (closure pointer)
       Global 2 is GP (goroutine pointer)
    */
    
    func Init(arch *ssagen.ArchInfo) {
    	arch.LinkArch = &wasm.Linkwasm
    	arch.REGSP = wasm.REG_SP
    	arch.MAXWIDTH = 1 << 50
    
    	arch.ZeroRange = zeroRange
    	arch.Ginsnop = ginsnop
    
    	arch.SSAMarkMoves = ssaMarkMoves
    	arch.SSAGenValue = ssaGenValue
    	arch.SSAGenBlock = ssaGenBlock
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ir/fmt.go

    		}
    		k := tf.Type.Kind()
    		if reflect.Bool <= k && k <= reflect.Complex128 {
    			name := strings.TrimSuffix(tf.Name, "_")
    			vf := v.Field(i)
    			vfi := vf.Interface()
    			if name == "Offset" && vfi == types.BADWIDTH || name != "Offset" && vf.IsZero() {
    				continue
    			}
    			if vfi == true {
    				fmt.Fprintf(w, " %s", name)
    			} else {
    				fmt.Fprintf(w, " %s:%+v", name, vf.Interface())
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/staticinit/sched.go

    			break
    		}
    		if name, offset, ok = StaticLoc(n.X); !ok {
    			break
    		}
    		l := getlit(n.Index)
    		if l < 0 {
    			break
    		}
    
    		// Check for overflow.
    		if n.Type().Size() != 0 && types.MaxWidth/n.Type().Size() <= int64(l) {
    			break
    		}
    		offset += int64(l) * n.Type().Size()
    		return name, offset, true
    	}
    
    	return nil, 0, false
    }
    
    func isSideEffect(n ir.Node) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. pkg/ctrlz/assets/static/js/jquery-3.2.1.slim.min.js

    Oa(a,b,c){var d,e,f,g,h=a.style;return c=c||Na(a),c&&(g=c.getPropertyValue(b)||c[b],""!==g||r.contains(a.ownerDocument,a)||(g=r.style(a,b)),!o.pixelMarginRight()&&Ma.test(g)&&La.test(b)&&(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f)),void 0!==g?g+"":g}function Pa(a,b){return{get:function(){return a()?void delete this.get:(this.get=b).apply(this,arguments)}}}var Qa=/^(none|table(?!-c[ea]).+)/,Ra=/^--/,Sa={position:"absolute",visibilit...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 68K bytes
    - Viewed (0)
Back to top