Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for July (0.03 sec)

  1. cmd/background-newdisks-heal-ops.go

    		Bucket:            h.Bucket,
    		Object:            h.Object,
    		QueuedBuckets:     h.QueuedBuckets,
    		HealedBuckets:     h.HealedBuckets,
    
    		ObjectsHealed: h.ItemsHealed, // Deprecated July 2021
    		ObjectsFailed: h.ItemsFailed, // Deprecated July 2021
    
    	}
    }
    
    func initAutoHeal(ctx context.Context, objAPI ObjectLayer) {
    	z, ok := objAPI.(*erasureServerPools)
    	if !ok {
    		return
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:32 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/releases/installation.adoc

    Build time:   2023-03-03 16:41:37 UTC
    Revision:     7d6581558e226a580d91d399f7dfb9e3095c2b1d
    
    Kotlin:       1.8.10
    Groovy:       3.0.13
    Ant:          Apache Ant(TM) version 1.10.11 compiled on July 10 2021
    JVM:          17.0.6 (Homebrew 17.0.6+0)
    OS:           Mac OS X 13.2.1 aarch64
    
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt

     *
     * Browsers and other HTTP clients need a set of trusted root certificates to authenticate their
     * peers. Sets of root certificates are managed by either the HTTP client (like Firefox), or the
     * host platform (like Android). In July 2018 Android had 134 trusted root certificates for its HTTP
     * clients to trust.
     *
     * For example, in order to establish a secure connection to `https://www.squareup.com/`,
     * these three certificates are used.
     *
     * ```
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  4. src/crypto/sha256/sha256block_amd64.s

    //
    // Reference
    // S. Gulley, et al, "New Instructions Supporting the Secure Hash
    // Algorithm on IntelĀ® Architecture Processors", July 2013
    // https://www.intel.com/content/www/us/en/developer/articles/technical/intel-sha-extensions.html
    //
    
    #define digestPtr	DI	// input/output, base pointer to digest hash vector H0, H1, ..., H7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    - CodeNarc has been updated to https://github.com/CodeNarc/CodeNarc/blob/master/CHANGELOG.md#version-14---may-2019[CodeNarc 1.4].
    - PMD has been updated to https://pmd.github.io/latest/pmd_release_notes.html#28-july-2019---6170[PMD 6.17.0].
    - JaCoCo has been updated to http://www.jacoco.org/jacoco/trunk/doc/changes.html[0.8.5]. Contributed by link:https://github.com/Godin[Evgeny Mandrikov]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  6. src/math/big/nat_test.go

    	x := nat(rndV(n)).norm()
    	if len(x) == 0 {
    		x.setWord(1)
    	}
    	return x
    }
    
    func BenchmarkMul(b *testing.B) {
    	mulx := rndNat(1e4)
    	muly := rndNat(1e4)
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		var z nat
    		z.mul(mulx, muly)
    	}
    }
    
    func benchmarkNatMul(b *testing.B, nwords int) {
    	x := rndNat(nwords)
    	y := rndNat(nwords)
    	var z nat
    	b.ResetTimer()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top