Search Options

Results per page
Sort
Preferred Languages
Advance

Results 361 - 370 of 453 for covers (0.06 sec)

  1. android/guava/src/com/google/common/collect/Maps.java

          this.bimap = checkNotNull(bimap);
        }
    
        @Override
        protected B doForward(A a) {
          return convert(bimap, a);
        }
    
        @Override
        protected A doBackward(B b) {
          return convert(bimap.inverse(), b);
        }
    
        private static <X, Y> Y convert(BiMap<X, Y> bimap, X input) {
          Y output = bimap.get(input);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Maps.java

          this.bimap = checkNotNull(bimap);
        }
    
        @Override
        protected B doForward(A a) {
          return convert(bimap, a);
        }
    
        @Override
        protected A doBackward(B b) {
          return convert(bimap.inverse(), b);
        }
    
        private static <X, Y> Y convert(BiMap<X, Y> bimap, X input) {
          Y output = bimap.get(input);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 167.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

            try {
                // remove duplicate host
                final DuplicateHostHelper duplicateHostHelper = ComponentUtil.getDuplicateHostHelper();
                return duplicateHostHelper.convert(url);
            } catch (final Exception e) {
                return url;
            }
        }
    
        protected List<String> getAnchorList(final Document document, final ResponseData responseData) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 13:01:38 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/primitives/Floats.java

        }
    
        private Object readResolve() {
          return INSTANCE;
        }
    
        private static final long serialVersionUID = 1;
      }
    
      /**
       * Returns a serializable converter object that converts between strings and floats using {@link
       * Float#valueOf} and {@link Float#toString()}.
       *
       * @since 16.0
       */
      public static Converter<String, Float> stringConverter() {
        return FloatConverter.INSTANCE;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 15:52:18 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/Doubles.java

        }
    
        private Object readResolve() {
          return INSTANCE;
        }
    
        private static final long serialVersionUID = 1;
      }
    
      /**
       * Returns a serializable converter object that converts between strings and doubles using {@link
       * Double#valueOf} and {@link Double#toString()}.
       *
       * @since 16.0
       */
      public static Converter<String, Double> stringConverter() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 15:52:18 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. guava/src/com/google/common/primitives/Floats.java

        }
    
        private Object readResolve() {
          return INSTANCE;
        }
    
        private static final long serialVersionUID = 1;
      }
    
      /**
       * Returns a serializable converter object that converts between strings and floats using {@link
       * Float#valueOf} and {@link Float#toString()}.
       *
       * @since 16.0
       */
      public static Converter<String, Float> stringConverter() {
        return FloatConverter.INSTANCE;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 15:52:18 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  7. cmd/object-api-errors.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"io"
    )
    
    // Converts underlying storage error. Convenience function written to
    // handle all cases where we have known types of errors returned by
    // underlying storage layer.
    func toObjectErr(oerr error, params ...string) error {
    	if oerr == nil {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Aug 09 02:05:14 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  8. cmd/signature-v4-parser_test.go

    		}
    	}
    }
    
    // TestParsePreSignV4 - Validates the parsing logic of Presignied v4 request from its url query values.
    func TestParsePreSignV4(t *testing.T) {
    	// converts the duration in seconds into string format.
    	getDurationStr := strconv.Itoa
    
    	// used in expected preSignValues, preSignValues.Date is of type time.Time .
    	queryTime := UTCNow()
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/primitives/Doubles.java

        }
    
        private Object readResolve() {
          return INSTANCE;
        }
    
        private static final long serialVersionUID = 1;
      }
    
      /**
       * Returns a serializable converter object that converts between strings and doubles using {@link
       * Double#valueOf} and {@link Double#toString()}.
       *
       * @since 16.0
       */
      public static Converter<String, Double> stringConverter() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 18:05:56 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/Futures.java

       * the input, and if the input is cancelled, the returned {@code Future} will receive a callback
       * in which it will attempt to cancel itself.
       *
       * <p>An example use of this method is to convert a serializable object returned from an RPC into
       * a POJO.
       *
       * @param input The future to transform
       * @param function A Function to transform the results of the provided future to the results of
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 13:13:32 UTC 2024
    - 64.4K bytes
    - Viewed (0)
Back to top