Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 144 for prove (0.22 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolInfoProvider.kt

        private fun KtFirPsiJavaClassSymbol.mayHaveDeprecation(): Boolean {
            if (!hasAnnotations) return false
    
            // Check the simple names of the Java annotations. While presence of such an annotation name does not prove deprecation, it is a
            // necessary condition for it. Type aliases are not a problem here: Java code cannot access Kotlin type aliases. (Currently,
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Sep 19 22:14:09 GMT 2023
    - 7.1K bytes
    - Viewed (0)
  2. licenses/github.com/hashicorp/errwrap/LICENSE

       merchantable, fit for a particular purpose or non-infringing. The entire
       risk as to the quality and performance of the Covered Software is with You.
       Should any Covered Software prove defective in any respect, You (not any
       Contributor) assume the cost of any necessary servicing, repair, or
       correction. This disclaimer of warranty constitutes an essential part of this
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  3. licenses/github.com/hashicorp/hcl/LICENSE

       merchantable, fit for a particular purpose or non-infringing. The entire
       risk as to the quality and performance of the Covered Software is with You.
       Should any Covered Software prove defective in any respect, You (not any
       Contributor) assume the cost of any necessary servicing, repair, or
       correction. This disclaimer of warranty constitutes an essential part of this
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  4. licenses/github.com/hashicorp/go-multierror/LICENSE

       merchantable, fit for a particular purpose or non-infringing. The entire
       risk as to the quality and performance of the Covered Software is with You.
       Should any Covered Software prove defective in any respect, You (not any
       Contributor) assume the cost of any necessary servicing, repair, or
       correction. This disclaimer of warranty constitutes an essential part of this
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  5. licenses/github.com/hashicorp/golang-lru/v2/LICENSE

       of defects, merchantable, fit for a particular purpose or non-infringing.
       The entire risk as to the quality and performance of the Covered Software
       is with You. Should any Covered Software prove defective in any respect,
       You (not any Contributor) assume the cost of any necessary servicing,
       repair, or correction. This disclaimer of warranty constitutes an essential
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Feb 03 20:21:32 GMT 2023
    - 15.6K bytes
    - Viewed (0)
  6. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableSortedMap.java

      }
    
      private static <K, V> ImmutableSortedMap<K, V> copyOfInternal(
          Map<? extends K, ? extends V> map, Comparator<? super K> comparator) {
    
        if (map instanceof ImmutableSortedMap) {
          // TODO: Prove that this cast is safe, even though
          // Collections.unmodifiableSortedMap requires the same key type.
          @SuppressWarnings("unchecked")
          ImmutableSortedMap<K, V> kvMap = (ImmutableSortedMap<K, V>) map;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 27 19:19:19 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  7. doc/go_mem.html

    <p>
    If <code>list</code> pointed to a cyclic list,
    then the original program would never access <code>*p</code> or <code>*q</code>,
    but the rewritten program would.
    (Moving `*p` ahead would be safe if the compiler can prove `*p` will not panic;
    moving `*q` ahead would also require the compiler proving that no other
    goroutine can access `*q`.)
    </p>
    
    <p>
    Not introducing data races also means not assuming that called functions
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Mar 04 15:54:42 GMT 2024
    - 26.6K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/StreamsTest.java

            (a, b) -> {
              count.incrementAndGet();
              assertThat(a.equals(String.valueOf(b))).isTrue();
            });
        assertThat(count.get()).isEqualTo(100000);
        // of course, this test doesn't prove that anything actually happened in parallel...
      }
    
      // TODO(kevinb): switch to importing Truth's assertThat(DoubleStream) if we get that added
      private static IterableSubject assertThatDoubleStream(DoubleStream stream) {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 20K bytes
    - Viewed (0)
  9. licenses/github.com/hashicorp/go-version/LICENSE

       merchantable, fit for a particular purpose or non-infringing. The entire
       risk as to the quality and performance of the Covered Software is with You.
       Should any Covered Software prove defective in any respect, You (not any
       Contributor) assume the cost of any necessary servicing, repair, or
       correction. This disclaimer of warranty constitutes an essential part of this
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  10. docs/en/docs/deployment/https.md

    <img src="/img/deployment/https/https.svg">
    
    The **TLS certificates** are **associated with a domain name**, not with an IP address.
    
    So, to renew the certificates, the renewal program needs to **prove** to the authority (Let's Encrypt) that it indeed **"owns" and controls that domain**.
    
    To do that, and to accommodate different application needs, there are several ways it can do it. Some popular ways are:
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Jan 11 16:31:18 GMT 2024
    - 12K bytes
    - Viewed (0)
Back to top