Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for coffsets (0.14 sec)

  1. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    253 / ${s})`})();e("ring-width",{"--tw-ring-inset":" ","--tw-ring-offset-width":r("ringOffsetWidth.DEFAULT","0px"),"--tw-ring-offset-color":r("ringOffsetColor.DEFAULT","#fff"),"--tw-ring-color":a,"--tw-ring-offset-shadow":"0 0 #0000","--tw-ring-shadow":"0 0 #0000","--tw-shadow":"0 0 #0000","--tw-shadow-colored":"0 0 #0000"}),i({ring:s=>({"@defaults ring-width":{},"--tw-ring-offset-shadow":"var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)","--tw-ring-shadow":`var(--tw-ring-inset)...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  2. src/cmd/compile/internal/ssagen/ssa.go

    		q.Pos = b.Pos
    	}
    }
    
    // AddAux adds the offset in the aux fields (AuxInt and Aux) of v to a.
    func AddAux(a *obj.Addr, v *ssa.Value) {
    	AddAux2(a, v, v.AuxInt)
    }
    func AddAux2(a *obj.Addr, v *ssa.Value, offset int64) {
    	if a.Type != obj.TYPE_MEM && a.Type != obj.TYPE_ADDR {
    		v.Fatalf("bad AddAux addr %v", a)
    	}
    	// add integer offset
    	a.Offset += offset
    
    	// If no additional symbol offset, we're done.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // Adjust large offsets into [0, axis_size). This also makes negative
        // offsets positive.
        // offset = ((offset % axis_size) + axis_size) % axis_size
        ImplicitLocOpBuilder b(op.getLoc(), rewriter);
        Value offset = op.getShift();
        auto axis_size = b.create<mhlo::ConstantOp>(b.getIntegerAttr(
            getElementTypeOrSelf(offset.getType()), input_shape[axis]));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top