Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for lett (0.18 sec)

  1. src/cmd/compile/internal/types2/expr.go

    			return
    		}
    
    		// non-constant shift with constant lhs
    		if isUntyped(x.typ) {
    			// spec: "If the left operand of a non-constant shift
    			// expression is an untyped constant, the type of the
    			// constant is what it would be if the shift expression
    			// were replaced by its left operand alone.".
    			//
    			// Delay operand checking until we know the final type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Preconditions.java

       *     errorMessageArgs[0]}, etc. Unmatched arguments will be appended to the formatted message in
       *     square braces. Unmatched placeholders will be left as-is.
       * @param errorMessageArgs the arguments to be substituted into the message template. Arguments
       *     are converted to strings using {@link String#valueOf(Object)}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/reflect/TypeToken.java

          Ordering<K> keyOrdering =
              new Ordering<K>() {
                @Override
                public int compare(K left, K right) {
                  // requireNonNull is safe because we are passing keys in the map.
                  return valueComparator.compare(
                      requireNonNull(map.get(left)), requireNonNull(map.get(right)));
                }
              };
          return keyOrdering.immutableSortedCopy(map.keySet());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

      private static void assertSubtypeTokenBeforeSupertypeToken(
          Iterable<? extends TypeToken<?>> types) {
        int i = 0;
        for (TypeToken<?> left : types) {
          int j = 0;
          for (TypeToken<?> right : types) {
            if (left.isSupertypeOf(right)) {
              assertTrue(left + " should be after " + right, i >= j);
            }
            j++;
          }
          i++;
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:15:24 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Preconditions.java

       *     errorMessageArgs[0]}, etc. Unmatched arguments will be appended to the formatted message in
       *     square braces. Unmatched placeholders will be left as-is.
       * @param errorMessageArgs the arguments to be substituted into the message template. Arguments
       *     are converted to strings using {@link String#valueOf(Object)}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/reflect/TypeToken.java

          Ordering<K> keyOrdering =
              new Ordering<K>() {
                @Override
                public int compare(K left, K right) {
                  // requireNonNull is safe because we are passing keys in the map.
                  return valueComparator.compare(
                      requireNonNull(map.get(left)), requireNonNull(map.get(right)));
                }
              };
          return keyOrdering.immutableSortedCopy(map.keySet());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/loong64/asm.go

    	case 35: // mov r,lext/auto/oreg
    		v := c.regoff(&p.To)
    		r := int(p.To.Reg)
    		if r == 0 {
    			r = int(o.param)
    		}
    		o1 = OP_IR(c.opir(ALU12IW), uint32((v+1<<11)>>12), uint32(REGTMP))
    		o2 = OP_RRR(c.oprrr(add), uint32(r), uint32(REGTMP), uint32(REGTMP))
    		o3 = OP_12IRR(c.opirr(p.As), uint32(v), uint32(REGTMP), uint32(p.From.Reg))
    
    	case 36: // mov lext/auto/oreg,r
    		v := c.regoff(&p.From)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 61.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/parser.go

    				par.Name = nil
    			}
    		}
    	} else if named != len(list) {
    		// some named or we're in a type parameter list => all must be named
    		var errPos Pos // left-most error position (or unknown)
    		var typ Expr   // current type (from right to left)
    		for i := len(list) - 1; i >= 0; i-- {
    			par := list[i]
    			if par.Type != nil {
    				typ = par.Type
    				if par.Name == nil {
    					errPos = StartPos(typ)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    `,
    }
    
    var (
    	getD        dFlag
    	getF        = CmdGet.Flag.Bool("f", false, "")
    	getFix      = CmdGet.Flag.Bool("fix", false, "")
    	getM        = CmdGet.Flag.Bool("m", false, "")
    	getT        = CmdGet.Flag.Bool("t", false, "")
    	getU        upgradeFlag
    	getInsecure = CmdGet.Flag.Bool("insecure", false, "")
    	// -v is cfg.BuildV
    )
    
    // upgradeFlag is a custom flag.Value for -u.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Multimaps.java

      }
    
      /**
       * Returns a view of a multimap where each value is transformed by a function. All other
       * properties of the multimap, such as iteration order, are left intact. For example, the code:
       *
       * <pre>{@code
       * Multimap<String, Integer> multimap =
       *     ImmutableSetMultimap.of("a", 2, "b", -3, "b", -3, "a", 4, "c", 6);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
Back to top