Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for secondselect (0.2 sec)

  1. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

    $.proxy(this.monthOrYearChanged, this))
    L419:            .on('change.daterangepicker', 'select.monthselect', $.proxy(this.monthOrYearChanged, this))
    L420:            .on('change.daterangepicker', 'select.hourselect,select.minuteselect,select.secondselect,select.ampmselect', $.proxy(this.timeChanged, this))
    L421:
    L422:        this.container.find('.ranges')
    L423:            .on('click.daterangepicker', 'li', $.proxy(this.clickRange, this))
    L424:
    L425:        this.container.find('.drp-buttons')
    ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  2. src/main/webapp/css/admin/plugins/daterangepicker/daterangepicker.css

    .daterangepicker...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 7.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/branchelim_test.go

    					t.Fatalf("expected 1 block after branchelim and deadcode; found %d", len(fun.f.Blocks))
    				}
    				if fun.values["phi"].Op != OpCondSelect {
    					t.Fatalf("expected phi op to be CondSelect; found op %s", fun.values["phi"].Op)
    				}
    				if fun.values["phi"].Args[2] != fun.values["cond"] {
    					t.Errorf("expected CondSelect condition to be %s; found %s", fun.values["cond"], fun.values["phi"].Args[2])
    				}
    				if fun.blocks["entry"].Kind != BlockExit {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 24 15:51:15 UTC 2018
    - 5.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/branchelim.go

    	if !shouldElimIfElse(no, yes, post, f.Config.arch) {
    		return false
    	}
    
    	// now we're committed: rewrite each Phi as a CondSelect
    	swap := post.Preds[0].Block() != b.Succs[0].Block()
    	for _, v := range post.Values {
    		if v.Op != OpPhi {
    			continue
    		}
    		v.Op = OpCondSelect
    		if swap {
    			v.Args[0], v.Args[1] = v.Args[1], v.Args[0]
    		}
    		v.AddArg(b.Controls[0])
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (CondSelect <t> x y check) && !check.Type.IsFlags() && check.Type.Size() == 1
        => (CondSelect <t> x y (MOVBQZX <typ.UInt64> check))
    (CondSelect <t> x y check) && !check.Type.IsFlags() && check.Type.Size() == 2
        => (CondSelect <t> x y (MOVWQZX <typ.UInt64> check))
    (CondSelect <t> x y check) && !check.Type.IsFlags() && check.Type.Size() == 4
        => (CondSelect <t> x y (MOVLQZX <typ.UInt64> check))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteAMD64.go

    	// match: (CondSelect <t> x y check)
    	// cond: !check.Type.IsFlags() && check.Type.Size() == 2
    	// result: (CondSelect <t> x y (MOVWQZX <typ.UInt64> check))
    	for {
    		t := v.Type
    		x := v_0
    		y := v_1
    		check := v_2
    		if !(!check.Type.IsFlags() && check.Type.Size() == 2) {
    			break
    		}
    		v.reset(OpCondSelect)
    		v.Type = t
    		v0 := b.NewValue0(v.Pos, OpAMD64MOVWQZX, typ.UInt64)
    		v0.AddArg(check)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 712.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/check.go

    						v.Op, v.Type.String())
    				}
    				if !v.Args[2].Type.IsMemory() {
    					f.Fatalf("bad arg 2 type to %s: want mem, have %s",
    						v.Op, v.Args[2].Type.String())
    				}
    			case OpCondSelect:
    				if !v.Args[2].Type.IsBoolean() {
    					f.Fatalf("bad arg 2 type to %s: want boolean, have %s",
    						v.Op, v.Args[2].Type.String())
    				}
    			case OpAddPtr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/Wasm.rules

    (PopCount64 ...) => (I64Popcnt ...)
    (PopCount32 x) => (I64Popcnt (ZeroExt32to64 x))
    (PopCount16 x) => (I64Popcnt (ZeroExt16to64 x))
    (PopCount8  x) => (I64Popcnt (ZeroExt8to64  x))
    
    (CondSelect ...) => (Select ...)
    
    // --- Optimizations ---
    (I64Add (I64Const [x]) (I64Const [y])) => (I64Const [x + y])
    (I64Mul (I64Const [x]) (I64Const [y])) => (I64Const [x * y])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 03:56:57 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Leq32F", argLength: 2, typ: "Bool"},
    	{name: "Leq64F", argLength: 2, typ: "Bool"},
    
    	// the type of a CondSelect is the same as the type of its first
    	// two arguments, which should be register-width scalars; the third
    	// argument should be a boolean
    	{name: "CondSelect", argLength: 3}, // arg2 ? arg0 : arg1
    
    	// boolean ops
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (CondSelect x y (SETBC [a] cmp))  => (ISEL [a] x y cmp)
    (CondSelect x y (SETBCR [a] cmp))  => (ISEL [a+4] x y cmp)
    // Only lower after bool is lowered. It should always lower. This helps ensure the folding below happens reliably.
    (CondSelect x y bool) && flagArg(bool) == nil => (ISEL [6] x y (CMPconst [0] (ANDconst [1] bool)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
Back to top