Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for lesz (0.24 sec)

  1. src/cmd/compile/internal/ssa/_gen/MIPS.rules

    (NE  (MOVWconst [c]) yes no) && c != 0 => (First yes no)
    (LTZ (MOVWconst [c]) yes no) && c <  0 => (First yes no)
    (LTZ (MOVWconst [c]) yes no) && c >= 0 => (First no yes)
    (LEZ (MOVWconst [c]) yes no) && c <= 0 => (First yes no)
    (LEZ (MOVWconst [c]) yes no) && c >  0 => (First no yes)
    (GTZ (MOVWconst [c]) yes no) && c >  0 => (First yes no)
    (GTZ (MOVWconst [c]) yes no) && c <= 0 => (First no yes)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 35.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/MIPS64.rules

    (NE  (MOVVconst [c]) yes no) && c != 0 => (First yes no)
    (LTZ (MOVVconst [c]) yes no) && c <  0 => (First yes no)
    (LTZ (MOVVconst [c]) yes no) && c >= 0 => (First no yes)
    (LEZ (MOVVconst [c]) yes no) && c <= 0 => (First yes no)
    (LEZ (MOVVconst [c]) yes no) && c >  0 => (First no yes)
    (GTZ (MOVVconst [c]) yes no) && c >  0 => (First yes no)
    (GTZ (MOVVconst [c]) yes no) && c <= 0 => (First no yes)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 41.9K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess/es/stopwords.txt

    como
    más
    pero
    sus
    le
    ya
    o
    este
    sí
    porque
    esta
    entre
    cuando
    muy
    sin
    sobre
    también
    me
    hasta
    hay
    donde
    quien
    desde
    todo
    nos
    durante
    todos
    uno
    les
    ni
    contra
    otros
    ese
    eso
    ante
    ellos
    e
    esto
    mí
    antes
    algunos
    qué
    unos
    yo
    otro
    otras
    otra
    él
    tanto
    esa
    estos
    mucho
    quienes
    nada
    muchos
    cual
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. LICENSE

    Public License permits more lax criteria for linking other code with
    the library.
    
      We call this license the "Lesser" General Public License because it
    does Less to protect the user's freedom than the ordinary General
    Public License.  It also provides other free software developers Less
    of an advantage over competing non-free programs.  These disadvantages
    are the reason we use the ordinary General Public License for many
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
  5. api/go1.18.txt

    pkg net/netip, method (Addr) IsMulticast() bool
    pkg net/netip, method (Addr) IsPrivate() bool
    pkg net/netip, method (Addr) IsUnspecified() bool
    pkg net/netip, method (Addr) IsValid() bool
    pkg net/netip, method (Addr) Less(Addr) bool
    pkg net/netip, method (Addr) MarshalBinary() ([]uint8, error)
    pkg net/netip, method (Addr) MarshalText() ([]uint8, error)
    pkg net/netip, method (Addr) Next() Addr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 13K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    (Less16U x y) => (SLTU (ZeroExt16to64 x) (ZeroExt16to64 y))
    (Less8U  x y) => (SLTU (ZeroExt8to64  x) (ZeroExt8to64  y))
    (Less(64|32)F ...) => (FLT(D|S) ...)
    
    // Convert x <= y to !(y > x).
    (Leq(64|32|16|8)  x y) => (Not (Less(64|32|16|8)  y x))
    (Leq(64|32|16|8)U x y) => (Not (Less(64|32|16|8)U y x))
    (Leq(64|32)F ...) => (FLE(D|S) ...)
    
    (EqPtr x y) => (SEQZ (SUB <typ.Uintptr> x y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    As she said this, she came upon a neat little house, on the door
    of which was a bright brass plate with the name `W. RABBIT'
    engraved upon it.  She went in without knocking, and hurried
    upstairs, in great fear lest she should meet the real Mary Ann,
    and be turned out of the house before she had found the fan and
    gloves.
    
      `How queer it seems,' Alice said to herself, `to be going
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (Neq(32|64)F x y) => (NotEqual (CMP(F|D) x y))
    
    (Less8 x y)  => (LessThan (CMP (SignExt8to32 x) (SignExt8to32 y)))
    (Less16 x y) => (LessThan (CMP (SignExt16to32 x) (SignExt16to32 y)))
    (Less32 x y) => (LessThan (CMP x y))
    (Less(32|64)F x y) => (GreaterThan (CMP(F|D) y x)) // reverse operands to work around NaN
    
    (Less8U x y)  => (LessThanU (CMP (ZeroExt8to32 x) (ZeroExt8to32 y)))
    (Less16U x y) => (LessThanU (CMP (ZeroExt16to32 x) (ZeroExt16to32 y)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  9. src/main/webapp/js/admin/popper.min.js.map

    the modifier is enabled or not */\n    enabled: true,\n    /** @prop {ModifierFn} */\n    fn: shift,\n  },\n\n  /**\n   * The `offset` modifier can shift your popper on both its axis.\n   *\n   * It accepts the following units:\n   * - `px` or unit-less, interpreted as pixels\n   * - `%` or `%r`, percentage relative to the length of the reference element\n   * - `%p`, percentage relative to the length of the popper element\n   * - `vw`, CSS viewport width unit\n   * - `vh`, CSS viewport height unit\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (Rsh16x(64|32|16|8) x y) && shiftIsBounded(v) => (SARW x y)
    (Rsh8x(64|32|16|8) x y)  && shiftIsBounded(v) => (SARB x y)
    
    // Lowering integer comparisons
    (Less(64|32|16|8)      x y) => (SETL  (CMP(Q|L|W|B)     x y))
    (Less(64|32|16|8)U     x y) => (SETB  (CMP(Q|L|W|B)     x y))
    (Leq(64|32|16|8)       x y) => (SETLE (CMP(Q|L|W|B)     x y))
    (Leq(64|32|16|8)U      x y) => (SETBE (CMP(Q|L|W|B)     x y))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
Back to top