Search Options

Results per page
Sort
Preferred Languages
Advance

Results 2171 - 2180 of 2,362 for dots (0.04 sec)

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

       *
       * <p>This method always return the value specified by {@link Long#hashCode()} in java, which
       * might be different from {@code ((Long) value).hashCode()} in GWT because {@link
       * Long#hashCode()} in GWT does not obey the JRE contract.
       *
       * <p><b>Java 8+ users:</b> use {@link Long#hashCode(long)} instead.
       *
       * @param value a primitive {@code long} value
       * @return a hash code for the value
       */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 25 18:05:56 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/primitives/Longs.java

       *
       * <p>This method always return the value specified by {@link Long#hashCode()} in java, which
       * might be different from {@code ((Long) value).hashCode()} in GWT because {@link
       * Long#hashCode()} in GWT does not obey the JRE contract.
       *
       * <p><b>Java 8+ users:</b> use {@link Long#hashCode(long)} instead.
       *
       * @param value a primitive {@code long} value
       * @return a hash code for the value
       */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 15:52:18 UTC 2024
    - 29K bytes
    - Viewed (0)
  3. src/main/java/jcifs/util/transport/Transport.java

                if ( Thread.currentThread() == this.thread ) {
                    // we are in the transport thread, ie. on idle disconnecting
                    // this is synchronous operation
                    // This does not handle compound requests
                    synchronized ( this.inLock ) {
                        Long peekKey = peekKey();
                        if ( peekKey == firstKey ) {
                            doRecv(response);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Nov 01 18:12:21 UTC 2020
    - 24.1K bytes
    - Viewed (0)
  4. docs/em/docs/help-fastapi.md

    ## โœ ๐Ÿšฒ ๐Ÿ“จ
    
    ๐Ÿ‘† ๐Ÿ’ช [๐Ÿ“‰](contributing.md){.internal-link target=_blank} โ„น ๐Ÿ“Ÿ โฎ๏ธ ๐Ÿšฒ ๐Ÿ“จ, ๐Ÿ–ผ:
    
    * ๐Ÿ”ง ๐Ÿคญ ๐Ÿ‘† ๐Ÿ”Ž ๐Ÿ”› ๐Ÿงพ.
    * ๐Ÿ’ฐ ๐Ÿ“„, ๐Ÿ“น, โš–๏ธ ๐Ÿ“ป ๐Ÿ‘† โœ โš–๏ธ ๐Ÿ”Ž ๐Ÿ”ƒ FastAPI <a href="https://github.com/fastapi/fastapi/edit/master/docs/en/data/external_links.yml" class="external-link" target="_blank">โœ ๐Ÿ‘‰ ๐Ÿ“</a>.
        * โš’ ๐Ÿ’ญ ๐Ÿ‘† ๐Ÿšฎ ๐Ÿ‘† ๐Ÿ”— โ–ถ๏ธ ๐Ÿ”— ๐Ÿ“„.
    * โ„น [๐Ÿ’ฌ ๐Ÿงพ](contributing.md#_9){.internal-link target=_blank} ๐Ÿ‘† ๐Ÿ‡ช๐Ÿ‡ธ.
        * ๐Ÿ‘† ๐Ÿ’ช โ„น ๐Ÿ“„ โœ โœ ๐ŸŽ.
    * ๐Ÿ› ๏ธ ๐Ÿ†• ๐Ÿงพ ๐Ÿ“„.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractor.java

            }
    
            if (logger.isDebugEnabled()) {
                logger.debug("metadata: {}", metadata);
            }
    
            return metadata;
        }
    
        // workaround: Tika does not have extention points.
        protected class TikaDetectParser extends CompositeParser {
            private static final long serialVersionUID = 1L;
    
            /**
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Sat Oct 12 01:41:37 UTC 2024
    - 25K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/ImmutableBiMapTest.java

        ImmutableMap<String, Integer> map =
            new ImmutableMap.Builder<String, Integer>()
                .put("one", 1)
                .put("two", 2)
                .put("uno", 1)
                .put("dos", 2)
                .buildOrThrow();
    
        IllegalArgumentException expected =
            assertThrows(IllegalArgumentException.class, () -> ImmutableBiMap.copyOf(map));
        assertThat(expected.getMessage()).containsMatch("1|2");
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/OrderingTest.java

      }
    
      public void testGreatestOfIterable_simple() {
        /*
         * If greatestOf() promised to be implemented as reverse().leastOf(), this
         * test would be enough. It doesn't... but we'll cheat and act like it does
         * anyway. There's a comment there to remind us to fix this if we change it.
         */
        List<Integer> list = asList(3, 1, 3, 2, 4, 2, 4, 3);
        assertEquals(asList(4, 4, 3, 3), numberOrdering.greatestOf(list, 4));
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/OrderingTest.java

      }
    
      public void testGreatestOfIterable_simple() {
        /*
         * If greatestOf() promised to be implemented as reverse().leastOf(), this
         * test would be enough. It doesn't... but we'll cheat and act like it does
         * anyway. There's a comment there to remind us to fix this if we change it.
         */
        List<Integer> list = asList(3, 1, 3, 2, 4, 2, 4, 3);
        assertEquals(asList(4, 4, 3, 3), numberOrdering.greatestOf(list, 4));
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/io/BaseEncoding.java

     *
     * <pre>{@code
     * // Do NOT do this
     * BaseEncoding hex = BaseEncoding.base16();
     * hex.lowerCase(); // does nothing!
     * return hex.decode("deadbeef"); // throws an IllegalArgumentException
     * }</pre>
     *
     * <p>It is guaranteed that {@code encoding.decode(encoding.encode(x))} is always equal to {@code
     * x}, but the reverse does not necessarily hold.
     *
     * <table>
     * <caption>Encodings</caption>
     * <tr>
     * <th>Encoding
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

            if (pluginArtifactRepositories == null) {
                pluginArtifactRepositories = new ArrayList<>();
            }
            return pluginArtifactRepositories;
        }
    
        // TODO this does not belong here.
        @Override
        public ProjectBuildingRequest getProjectBuildingRequest() {
            if (projectBuildingRequest == null) {
                projectBuildingRequest = new DefaultProjectBuildingRequest();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 31.7K bytes
    - Viewed (0)
Back to top