Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 75 for Villegas (0.29 sec)

  1. maven-compat/src/main/java/org/apache/maven/artifact/manager/DefaultWagonManager.java

            if (mirror != null) {
                String id = mirror.getId();
                if (id == null) {
                    // TODO this should be illegal in settings.xml
                    id = repository.getId();
                }
    
                log.debug("Using mirror: " + mirror.getUrl() + " (id: " + id + ")");
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 6.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/InetAddresses.java

        // Squash into 224/4 Multicast and 240/4 Reserved space (i.e. 224/3).
        coercedHash |= 0xe0000000;
    
        // Fixup to avoid some "illegal" values. Currently the only potential
        // illegal value is 255.255.255.255.
        if (coercedHash == 0xffffffff) {
          coercedHash = 0xfffffffe;
        }
    
        return getInet4Address(Ints.toByteArray(coercedHash));
      }
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Dec 15 19:31:54 GMT 2023
    - 44K bytes
    - Viewed (1)
  3. android/guava-tests/benchmark/com/google/common/hash/HashStringBenchmark.java

        strings = new String[SAMPLES];
        for (int i = 0; i < SAMPLES; i++) {
          StringBuilder sb = new StringBuilder();
          for (int j = 0; j < charCount; j++) {
            int codePoint;
            // discard illegal surrogate "codepoints"
            do {
              codePoint = rnd.nextInt(maxCodePoint.value);
            } while (Character.isSurrogate((char) codePoint));
            sb.appendCodePoint(codePoint);
          }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Dec 04 17:37:03 GMT 2017
    - 5.3K bytes
    - Viewed (0)
  4. src/main/resources/fess_message.properties

    # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    # five framework-embedded messages (don't change key names)
    # - - - - - - - - - -/
    errors.login.failure=Login failed.
    errors.app.illegal.transition=Please retry because of illegal transition.
    errors.app.db.already.deleted=others might be updated, so retry.
    errors.app.db.already.updated=others might be updated, so retry.
    errors.app.db.already.exists=already existing data, so retry.
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 12.5K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/primitives/UnsignedIntsTest.java

        // parseable, but the spec doesn't seem to say which exception is thrown for an invalid radix.
        // In contrast to the JVM, Kotlin native throws an Illegal argument exception in this case
        // (which seems to make more sense).
        try {
          UnsignedInts.parseUnsignedInt("0", Character.MIN_RADIX - 1);
          fail();
        } catch (NumberFormatException expected) {
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 06 16:10:08 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/HashCode.java

      private static int decode(char ch) {
        if (ch >= '0' && ch <= '9') {
          return ch - '0';
        }
        if (ch >= 'a' && ch <= 'f') {
          return ch - 'a' + 10;
        }
        throw new IllegalArgumentException("Illegal hexadecimal character: " + ch);
      }
    
      /**
       * Returns {@code true} if {@code object} is a {@link HashCode} instance with the identical byte
       * representation to this hash code.
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Apr 20 18:43:59 GMT 2021
    - 12.6K bytes
    - Viewed (0)
  7. src/main/resources/fess_message_de.properties

    # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    # five framework-embedded messages (don't change key names)
    # - - - - - - - - - -/
    errors.login.failure=Login fehlgeschlagen.
    errors.app.illegal.transition=Unzulässige Wertänderung, bitte erneut versuchen.
    errors.app.db.already.deleted=Bearbeitungskonflikt, bitte erneut versuchen.
    errors.app.db.already.updated=Bearbeitungskonflikt, bitte erneut versuchen.
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Tue Oct 29 15:01:03 GMT 2019
    - 11.8K bytes
    - Viewed (0)
  8. src/main/resources/fess_message_ko.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 = 다른 처리로 업데이트 되어 있을 수 있습니다. 작업을 확인하십시오.
    errors.app.db.already.exists = 데이터가 이미 존재합니다. 작업을 확인하십시오.
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Jul 07 06:11:30 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/primitives/UnsignedIntsTest.java

        // parseable, but the spec doesn't seem to say which exception is thrown for an invalid radix.
        // In contrast to the JVM, Kotlin native throws an Illegal argument exception in this case
        // (which seems to make more sense).
        try {
          UnsignedInts.parseUnsignedInt("0", Character.MIN_RADIX - 1);
          fail();
        } catch (NumberFormatException expected) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 06 16:10:08 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String ERRORS_LOGIN_FAILURE = "{errors.login.failure}";
    
        /** The key of the message: Please retry because of illegal transition. */
        public static final String ERRORS_APP_ILLEGAL_TRANSITION = "{errors.app.illegal.transition}";
    
        /** The key of the message: others might be updated, so retry. */
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
Back to top