Search Options

Results per page
Sort
Preferred Languages
Advance

Results 731 - 740 of 809 for Learning (0.29 sec)

  1. guava-tests/test/com/google/common/primitives/DoublesTest.java

      public void testStringConverterSerialization() {
        SerializableTester.reserializeAndAssert(Doubles.stringConverter());
      }
    
      public void testToArray() {
        // need explicit type parameter to avoid javac warning!?
        List<Double> none = Arrays.<Double>asList();
        assertThat(Doubles.toArray(none)).isEqualTo(EMPTY);
    
        List<Double> one = Arrays.asList((double) 1);
        assertThat(Doubles.toArray(one)).isEqualTo(ARRAY1);
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/primitives/FloatsTest.java

      public void testStringConverterSerialization() {
        SerializableTester.reserializeAndAssert(Floats.stringConverter());
      }
    
      public void testToArray() {
        // need explicit type parameter to avoid javac warning!?
        List<Float> none = Arrays.<Float>asList();
        assertThat(Floats.toArray(none)).isEqualTo(EMPTY);
    
        List<Float> one = Arrays.asList((float) 1);
        assertThat(Floats.toArray(one)).isEqualTo(ARRAY1);
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/primitives/LongsTest.java

      public void testStringConverterSerialization() {
        SerializableTester.reserializeAndAssert(Longs.stringConverter());
      }
    
      public void testToArray() {
        // need explicit type parameter to avoid javac warning!?
        List<Long> none = Arrays.<Long>asList();
        assertThat(Longs.toArray(none)).isEqualTo(EMPTY);
    
        List<Long> one = Arrays.asList((long) 1);
        assertThat(Longs.toArray(one)).isEqualTo(ARRAY1);
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  4. cmd/erasure-healing.go

    				result.After.Drives[i].State = madmin.DriveStateOk
    			}
    		}
    	}
    
    	return result, nil
    }
    
    // checkAbandonedParts will check if an object has abandoned parts,
    // meaning data-dirs or inlined data that are no longer referenced by the xl.meta
    // Errors are generally ignored by this function.
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Oct 02 17:50:41 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  5. docs/em/docs/tutorial/sql-databases.md

    /// tip
    
    ๐Ÿ‡ธ๐Ÿ‡ฒ ๐Ÿท `User` ๐Ÿ”Œ `hashed_password` ๐Ÿ‘ˆ ๐Ÿ”œ ๐Ÿ”Œ ๐Ÿ” #๏ธโƒฃ โฌ ๐Ÿ”.
    
    โœ‹๏ธ โšซ๏ธโ” ๐Ÿ› ๏ธ ๐Ÿ‘ฉโ€๐Ÿ’ป ๐Ÿšš โฎ๏ธ ๐Ÿ”, ๐Ÿ‘† ๐Ÿ’ช โš— โšซ๏ธ &amp; ๐Ÿ— #๏ธโƒฃ ๐Ÿ” ๐Ÿ‘† ๐Ÿˆธ.
    
     &amp; โคด๏ธ ๐Ÿšถโ€โ™€๏ธ `hashed_password` โŒ โฎ๏ธ ๐Ÿ’ฒ ๐Ÿ–Š.
    
    ///
    
    /// warning
    
    ๐Ÿ‘‰ ๐Ÿ–ผ ๐Ÿšซ ๐Ÿ”, ๐Ÿ” ๐Ÿšซ#๏ธโƒฃ.
    
    ๐ŸŽฐ ๐Ÿ‘จโ€โคโ€๐Ÿ‘จ ๐Ÿˆธ ๐Ÿ‘† ๐Ÿ”œ ๐Ÿ’ช #๏ธโƒฃ ๐Ÿ” &amp; ๐Ÿ™… ๐Ÿ–Š ๐Ÿ‘ซ ๐Ÿ”ข.
    
    ๐ŸŒ… โ„น, ๐Ÿšถ ๐Ÿ”™ ๐Ÿ’‚โ€โ™‚ ๐Ÿ“„ ๐Ÿ”ฐ.
    
    ๐Ÿ“ฅ ๐Ÿ‘ฅ ๐ŸŽฏ ๐Ÿ•ด ๐Ÿ”› ๐Ÿงฐ &amp; ๐Ÿ‘จโ€๐Ÿ”ง ๐Ÿ’ฝ.
    
    ///
    
    /// tip
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 25K bytes
    - Viewed (0)
  6. docs/changelogs/changelog_2x.md

        HttpLoggingInterceptor loggingInterceptor = new HttpLoggingInterceptor();
        loggingInterceptor.setLevel(HttpLoggingInterceptor.Level.BASIC);
        client.networkInterceptors().add(loggingInterceptor);
        ```
    
        **Warning:** Avoid `Level.HEADERS` and `Level.BODY` in production because
        they could leak passwords and other authentication credentials to insecure
        logs.
    
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/TreeMultiset.java

     * or an explicit {@link Comparator}. In all cases, this implementation uses {@link
     * Comparable#compareTo} or {@link Comparator#compare} instead of {@link Object#equals} to determine
     * equivalence of instances.
     *
     * <p><b>Warning:</b> The comparison must be <i>consistent with equals</i> as explained by the
     * {@link Comparable} class specification. Otherwise, the resulting multiset will violate the {@link
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 20:24:49 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/net/MediaType.java

     * As such, the {@code *} character is treated as a wildcard and is used to represent any acceptable
     * type or subtype value. A media type may not have wildcard type with a declared subtype. The
     * {@code *} character has no special meaning as part of a parameter. All values for type, subtype,
     * parameter attributes or parameter values must be valid according to RFCs <a
     * href="https://tools.ietf.org/html/rfc2045">2045</a> and <a
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Sep 26 19:15:09 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  9. LICENSE

        any liability that these contractual assumptions directly impose on
        those licensors and authors.
    
      All other non-permissive additional terms are considered "further
    restrictions" within the meaning of section 10.  If the Program as you
    received it, or any part of it, contains a notice stating that it is
    governed by this License along with a term that is a further
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Apr 23 18:58:53 UTC 2021
    - 33.7K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.30.md

    ### Other (Cleanup or Flake)
    
    - Add warning for PV on relaim policy when it is Recycle ([#122339](https://github.com/kubernetes/kubernetes/pull/122339), [@carlory](https://github.com/carlory)) [SIG Storage]
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Wed Oct 23 04:40:14 UTC 2024
    - 309.1K bytes
    - Viewed (0)
Back to top