Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 49 for isalnum (0.31 sec)

  1. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/BaseSerializerFactory.java

                return Cast.uncheckedNonnullCast(FILE_SERIALIZER);
            }
            if (type.equals(byte[].class)) {
                return Cast.uncheckedNonnullCast(BYTE_ARRAY_SERIALIZER);
            }
            if (type.isEnum()) {
                return Cast.uncheckedNonnullCast(new EnumSerializer<Enum<?>>(Cast.<Class<Enum<?>>>uncheckedNonnullCast(type)));
            }
            if (type.equals(Boolean.class)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/EnumMultiset.java

      private transient int distinctElements;
      private transient long size;
    
      /** Creates an empty {@code EnumMultiset}. */
      private EnumMultiset(Class<E> type) {
        this.type = type;
        checkArgument(type.isEnum());
        this.enumConstants = type.getEnumConstants();
        this.counts = new int[enumConstants.length];
      }
    
      private boolean isActuallyE(@CheckForNull Object o) {
        if (o instanceof Enum) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/cli/src/main/java/org/gradle/cli/CommandLineParser.java

     *
     * </ul>
     */
    public class CommandLineParser {
        private static final Pattern OPTION_NAME_PATTERN = Pattern.compile("(\\?|\\p{Alnum}[\\p{Alnum}-_]*)");
    
        private static final String DISABLE_OPTION_PREFIX = "no-";
    
        private Map<String, CommandLineOption> optionsByString = new HashMap<String, CommandLineOption>();
        private boolean allowMixedOptions;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/typeconversion/DefaultTypeConverter.java

            if (type.isInstance(notation)) {
                return notation;
            }
            if (!primitive && notation == null) {
                return null;
            }
    
            if (type.isEnum()) {
                return convertEnum(Cast.uncheckedCast(type), notation);
            }
    
            NotationParser<Object, ?> parser;
            parser = parsers.get(primitive ? UNBOXED_TYPES.get(type) : type);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. gradlew

    # an unmatched quote.
    #
    
    eval "set -- $(
            printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
            xargs -n1 |
            sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
            tr '\n' ' '
        )" '"$@"'
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 24 09:00:26 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    # an unmatched quote.
    #
    
    eval "set -- \$(
            printf '%s\\n' "\$DEFAULT_JVM_OPTS \$JAVA_OPTS \$${optsEnvironmentVar}" |
            xargs -n1 |
            sed ' s~[^-[:alnum:]+,./:=@_]~\\\\&~g; ' |
            tr '\\n' ' '
        )" '"\$@"'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. gradlew

    # an unmatched quote.
    #
    
    eval "set -- $(
            printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
            xargs -n1 |
            sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
            tr '\n' ' '
        )" '"$@"'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. src/fmt/print.go

    func tooLarge(x int) bool {
    	const max int = 1e6
    	return x > max || x < -max
    }
    
    // parsenum converts ASCII to integer.  num is 0 (and isnum is false) if no number present.
    func parsenum(s string, start, end int) (num int, isnum bool, newi int) {
    	if start >= end {
    		return 0, false, end
    	}
    	for newi = start; newi < end && '0' <= s[newi] && s[newi] <= '9'; newi++ {
    		if tooLarge(num) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

        if (implementation != null) {
          return get(implementation);
        }
        if (type == Stream.class) {
          return type.cast(Stream.empty());
        }
        if (type.isEnum()) {
          T[] enumConstants = type.getEnumConstants();
          return (enumConstants == null || enumConstants.length == 0) ? null : enumConstants[0];
        }
        if (type.isArray()) {
          return createEmptyArray(type);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 21K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

        }
    
        @Override
        protected ClassInspectionVisitor start(Class<?> type) {
            if (type.isAnnotation() || type.isEnum()) {
                TreeFormatter formatter = new TreeFormatter();
                formatter.node(type);
                formatter.append(" is not a class or interface.");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
Back to top