Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 104 for accurate (0.36 sec)

  1. licenses/github.com/hashicorp/go-multierror/LICENSE

    You may include the notice in a location (such as a LICENSE file in a relevant
    directory) where a recipient would be likely to look for such a notice.
    
    You may add additional accurate notices of copyright ownership.
    
    Exhibit B - “Incompatible With Secondary Licenses” Notice
    
          This Source Code Form is “Incompatible
          With Secondary Licenses”, as defined by
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  2. licenses/github.com/hashicorp/go-version/LICENSE

    You may include the notice in a location (such as a LICENSE file in a relevant
    directory) where a recipient would be likely to look for such a notice.
    
    You may add additional accurate notices of copyright ownership.
    
    Exhibit B - “Incompatible With Secondary Licenses” Notice
    
          This Source Code Form is “Incompatible
          With Secondary Licenses”, as defined by
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Sat Oct 26 02:47:39 GMT 2019
    - 15.6K bytes
    - Viewed (0)
  3. mockwebserver/src/test/java/mockwebserver3/MockWebServerTest.kt

        assertThat(inputStream.read()).isEqualTo('B'.code)
        assertThat(inputStream.read()).isEqualTo('C'.code)
        try {
          inputStream.read() // if Content-Length was accurate, this would return -1 immediately
          fail<Unit>()
        } catch (expected: SocketTimeoutException) {
          // Expected.
        }
        val urlConnection2 = server.url("/").toUrl().openConnection()
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 23.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/math/DoubleMath.java

        checkNonNegative("n", n);
        if (n > MAX_FACTORIAL) {
          return Double.POSITIVE_INFINITY;
        } else {
          // Multiplying the last (n & 0xf) values into their own accumulator gives a more accurate
          // result than multiplying by everySixteenthFactorial[n >> 4] directly.
          double accum = 1.0;
          for (int i = 1 + (n & ~0xf); i <= n; i++) {
            accum *= i;
          }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 07 17:50:39 GMT 2024
    - 18.9K bytes
    - Viewed (0)
  5. cmd/api-router.go

    //
    // This middleware always calls `collectAPIStats` to collect API stats.
    //
    // The passed in handler function must be a method of `objectAPIHandlers` for
    // the name displayed in logs and trace to be accurate. The name is extracted
    // via reflection.
    //
    // When **no** flags are passed, the behavior is to trace both headers and body,
    // gzip the response and throttle the handler via `maxClients`. Each of these
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Mar 04 18:05:56 GMT 2024
    - 22.8K bytes
    - Viewed (0)
  6. cmd/admin-router.go

    // done per-"handler function registration" in the router.
    //
    // The passed in handler function must be a method of `adminAPIHandlers` for the
    // name displayed in logs and trace to be accurate. The name is extracted via
    // reflection.
    //
    // When no flags are passed, gzip compression, http tracing of headers and
    // checking of object layer availability are all enabled. Use flags to modify
    // this behavior.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Mar 10 21:09:36 GMT 2024
    - 25.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/BloomFilter.java

      }
    
      /**
       * Returns an estimate for the total number of distinct elements that have been added to this
       * Bloom filter. This approximation is reasonably accurate if it does not exceed the value of
       * {@code expectedInsertions} that was used when constructing the filter.
       *
       * @since 22.0
       */
      public long approximateElementCount() {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 23.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/net/InternetDomainName.java

     * done by determining whether the domain ended with a {@linkplain #isPublicSuffix() public suffix}
     * but was not itself a public suffix. However, this test is no longer accurate. There are many
     * domains which are both public suffixes and addressable as hosts; {@code "uk.com"} is one example.
     * Using the subset of public suffixes that are {@linkplain #isRegistrySuffix() registry suffixes},
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 05 20:47:23 GMT 2024
    - 28K bytes
    - Viewed (0)
  9. istioctl/pkg/workload/workload.go

    }
    
    // Get and store the needed certificate and token. The certificate comes from the CA root cert, and
    // the token is generated by kubectl under the workload group's namespace and service account
    // TODO: Make the following accurate when using the Kubernetes certificate signer
    func createCertsTokens(kubeClient kube.CLIClient, wg *clientv1alpha3.WorkloadGroup, dir string, out io.Writer) error {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Apr 17 20:06:41 GMT 2024
    - 25.5K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/cache/DiskLruCache.kt

            // A file must have been deleted manually!
            for (source in sources) {
              source.closeQuietly()
            }
            // Since the entry is no longer valid, remove it so the metadata is accurate (i.e. the cache
            // size.)
            try {
              removeEntry(this)
            } catch (_: IOException) {
            }
            return null
          }
        }
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 34.7K bytes
    - Viewed (0)
Back to top