Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 75 for Villegas (0.54 sec)

  1. android/guava/src/com/google/common/primitives/UnsignedLongs.java

        if (string.length() == 0) {
          throw new NumberFormatException("empty string");
        }
        if (radix < Character.MIN_RADIX || radix > Character.MAX_RADIX) {
          throw new NumberFormatException("illegal radix: " + radix);
        }
    
        int maxSafePos = ParseOverflowDetection.maxSafeDigits[radix] - 1;
        long value = 0;
        for (int pos = 0; pos < string.length(); pos++) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 17.6K bytes
    - Viewed (0)
  2. internal/s3select/unused-errors.go

    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errIllegalSQLFunctionArgument(err error) *s3Error {
    	return &s3Error{
    		code:       "IllegalSqlFunctionArgument",
    		message:    "Illegal argument was used in the SQL function.",
    		statusCode: 400,
    		cause:      err,
    	}
    }
    
    func errMultipleDataSourcesUnsupported(err error) *s3Error {
    	return &s3Error{
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Tue Feb 20 08:16:35 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/ws/RealWebSocket.kt

        if (unknownValues) return false
    
        // If the server returned a value for client_max_window_bits, fail the web socket.
        if (clientMaxWindowBits != null) return false
    
        // If the server returned an illegal server_max_window_bits, fail the web socket.
        if (serverMaxWindowBits != null && serverMaxWindowBits !in 8..15) return false
    
        // Success.
        return true
      }
    
      @Throws(IOException::class)
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Apr 01 14:21:25 GMT 2024
    - 22.1K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/flowcontrol/v1beta2/generated.proto

      // Required.
      repeated string verbs = 1;
    
      // `nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty.
      // For example:
      //   - "/healthz" is legal
      //   - "/hea*" is illegal
      //   - "/hea" is legal but matches nothing
      //   - "/hea/*" also matches nothing
      //   - "/healthz/*" matches all per-component health checks.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 19.4K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/flowcontrol/v1alpha1/generated.proto

      // Required.
      repeated string verbs = 1;
    
      // `nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty.
      // For example:
      //   - "/healthz" is legal
      //   - "/hea*" is illegal
      //   - "/hea" is legal but matches nothing
      //   - "/hea/*" also matches nothing
      //   - "/healthz/*" matches all per-component health checks.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 19.4K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/hash/HashTestUtils.java

        }
      }
    
      /**
       * This verifies that putUnencodedChars(String) and hashUnencodedChars(String) are equivalent,
       * even for funny strings composed by (possibly unmatched, and mostly illegal) surrogate
       * characters. (But doesn't test that they do the right thing - just their consistency).
       */
      private static void assertHashStringWithSurrogatesEquivalence(
          HashFunction hashFunction, Random random) {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 25.3K bytes
    - Viewed (0)
  7. src/main/resources/fess_message_ja.properties

    # ---------------------
    # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    # five framework-embedded messages (don't change key names)
    # - - - - - - - - - -/
    errors.login.failure = ログインに失敗しました。
    errors.app.illegal.transition = 不正な遷移のため、再度実行してください。
    errors.app.db.already.deleted = 他の処理で削除されている可能性があります。再度、操作をやり直してください。
    errors.app.db.already.updated = 他の処理で更新されている可能性があります。再度、操作をやり直してください。
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 15.1K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CallResolver.kt

                Errors.INVISIBLE_MEMBER,
                Errors.NO_VALUE_FOR_PARAMETER,
                Errors.MISSING_RECEIVER,
                Errors.NO_RECEIVER_ALLOWED,
                Errors.ILLEGAL_SELECTOR,
                Errors.FUNCTION_EXPECTED,
                Errors.FUNCTION_CALL_EXPECTED,
                Errors.NO_CONSTRUCTOR,
                Errors.OVERLOAD_RESOLUTION_AMBIGUITY,
                Errors.NONE_APPLICABLE,
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Mar 14 06:10:31 GMT 2024
    - 36.4K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/hash/HashTestUtils.java

        }
      }
    
      /**
       * This verifies that putUnencodedChars(String) and hashUnencodedChars(String) are equivalent,
       * even for funny strings composed by (possibly unmatched, and mostly illegal) surrogate
       * characters. (But doesn't test that they do the right thing - just their consistency).
       */
      private static void assertHashStringWithSurrogatesEquivalence(
          HashFunction hashFunction, Random random) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 25.3K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto

      // Required.
      repeated string verbs = 1;
    
      // `nonResourceURLs` is a set of url prefixes that a user should have access to and may not be empty.
      // For example:
      //   - "/healthz" is legal
      //   - "/hea*" is illegal
      //   - "/hea" is legal but matches nothing
      //   - "/hea/*" also matches nothing
      //   - "/healthz/*" matches all per-component health checks.
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 19.4K bytes
    - Viewed (0)
Back to top