Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for isalnum (0.15 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirMetadataCalculator.kt

            )
    }
    
    private fun getAsmMethodSignatureWithCorrection(method: PsiMethod): String = buildString {
        append("(")
        if (method.containingClass?.isEnum == true && method.isConstructor) {
            // Enum constructors are represented without name/ordinal in light classes, which seems fine because they don't have name/ordinal
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. hack/make-rules/test.sh

    OPTIONS:
      -p <number>   : number of parallel workers, must be >= 1
    EOF
    }
    
    isnum() {
      [[ "$1" =~ ^[0-9]+$ ]]
    }
    
    PARALLEL="${PARALLEL:-1}"
    while getopts "hp:i:" opt ; do
      case ${opt} in
        h)
          kube::test::usage
          exit 0
          ;;
        p)
          PARALLEL="${OPTARG}"
          if ! isnum "${PARALLEL}" || [[ "${PARALLEL}" -le 0 ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

      void doTestEquals(Class<?> cls)
          throws ParameterNotInstantiableException, ParameterHasNoDistinctValueException,
              IllegalAccessException, InvocationTargetException, FactoryMethodReturnsNullException {
        if (cls.isEnum()) {
          return;
        }
        List<? extends Invokable<?, ?>> factories = Lists.reverse(getFactories(TypeToken.of(cls)));
        if (factories.isEmpty()) {
          return;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/ClassMetaData.java

        }
    
        public boolean isInterface() {
            return metaType == MetaType.INTERFACE;
        }
    
        public boolean isGroovy() {
            return isGroovy;
        }
    
        public boolean isEnum() {
            return metaType == MetaType.ENUM;
        }
    
        public String getSuperClassName() {
            return superClassName;
        }
    
        public void setSuperClassName(String superClassName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 10.1K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

      void doTestEquals(Class<?> cls)
          throws ParameterNotInstantiableException, ParameterHasNoDistinctValueException,
              IllegalAccessException, InvocationTargetException, FactoryMethodReturnsNullException {
        if (cls.isEnum()) {
          return;
        }
        List<? extends Invokable<?, ?>> factories = Lists.reverse(getFactories(TypeToken.of(cls)));
        if (factories.isEmpty()) {
          return;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top