Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 75 for Villegas (0.22 sec)

  1. 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)
  2. guava/src/com/google/common/cache/CacheBuilderSpec.java

     * request expiration in milliseconds, microseconds, or nanoseconds.)
     *
     * <p>Whitespace before and after commas and equal signs is ignored. Keys may not be repeated; it is
     * also illegal to use the following pairs of keys in a single value:
     *
     * <ul>
     *   <li>{@code maximumSize} and {@code maximumWeight}
     *   <li>{@code softValues} and {@code weakValues}
     * </ul>
     *
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Aug 22 14:27:44 GMT 2022
    - 18.1K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/math/QuantilesTest.java

       * 2. Tests on hardcoded datasets include non-finite values for chains starting with scale(10);
       * 3. Tests on a mechanically generated dataset for chains starting with percentiles();
       * 4. Tests of illegal usages of the API.
       */
    
      /*
       * Covering every combination would lead to an explosion in the number of tests. So we cover only:
       * - median with compute taking a double-collection and with computeInPlace;
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 29.7K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/math/QuantilesTest.java

       * 2. Tests on hardcoded datasets include non-finite values for chains starting with scale(10);
       * 3. Tests on a mechanically generated dataset for chains starting with percentiles();
       * 4. Tests of illegal usages of the API.
       */
    
      /*
       * Covering every combination would lead to an explosion in the number of tests. So we cover only:
       * - median with compute taking a double-collection and with computeInPlace;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 29.7K bytes
    - Viewed (0)
  5. src/main/resources/fess_message_fr.properties

    # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    # five framework-embedded messages (don't change key names)
    # - - - - - - - - - -/
    errors.login.failure=La connexion a échoué.
    errors.app.illegal.transition=Veuillez réessayer en raison d'une transition illégale.
    errors.app.db.already.deleted=d'autres peuvent être mis à jour, alors réessayez.
    errors.app.db.already.updated=d'autres peuvent être mis à jour, alors réessayez.
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Feb 06 22:59:17 GMT 2023
    - 14.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * </td></tr>
     * 
     * <tr><td width="20%"><code>smb1://myworkgroup/angus/ &lt;-- ILLEGAL </code></td><td>
     * Despite the hierarchial relationship between workgroups, servers, and
     * filesystems this example is not valid.
     * </td></tr>
     *
     * <tr><td width="20%">
     * <code>smb1://server/share/path/to/dir &lt;-- ILLEGAL </code></td><td>
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  7. guava-tests/test/com/google/common/util/concurrent/AbstractFutureBenchmarks.java

            return getValue();
          }
    
          /**
           * Implementation of the actual value retrieval. Will return the value on success, an
           * exception on failure, a cancellation on cancellation, or an illegal state if the
           * synchronizer is in an invalid state.
           */
          private V getValue() throws CancellationException, ExecutionException {
            int state = getState();
            switch (state) {
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed May 09 15:17:25 GMT 2018
    - 13.6K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureBenchmarks.java

            return getValue();
          }
    
          /**
           * Implementation of the actual value retrieval. Will return the value on success, an
           * exception on failure, a cancellation on cancellation, or an illegal state if the
           * synchronizer is in an invalid state.
           */
          private V getValue() throws CancellationException, ExecutionException {
            int state = getState();
            switch (state) {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Apr 06 12:56:11 GMT 2023
    - 13.6K bytes
    - Viewed (0)
  9. architecture/ambient/ztunnel.md

    The original destination is then extracted to determined which certificate to use.
    SNI is not used because it is illegal to use IPs in SNI, and there is no other existing standard format to represent what we need to.
    Additionally, using the redirection mechanism reduces the need for clients to know the destination's ztunnel address.
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Thu Apr 25 22:35:16 GMT 2024
    - 16.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ObjectCountHashMap.java

      }
    
      void init(int expectedSize, float loadFactor) {
        Preconditions.checkArgument(expectedSize >= 0, "Initial capacity must be non-negative");
        Preconditions.checkArgument(loadFactor > 0, "Illegal load factor");
        int buckets = Hashing.closedTableSize(expectedSize, loadFactor);
        this.table = newTable(buckets);
        this.loadFactor = loadFactor;
    
        this.keys = new @Nullable Object[expectedSize];
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Jun 01 22:07:10 GMT 2021
    - 15K bytes
    - Viewed (0)
Back to top