Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for July (0.04 sec)

  1. src/crypto/internal/boring/Dockerfile

    # Run this using build.sh.
    
    ARG ubuntu=ubuntu
    FROM $ubuntu:focal
    
    RUN mkdir /boring
    WORKDIR /boring
    
    ENV LANG=C
    ENV LANGUAGE=
    
    # Following NIST submission draft dated July 3, 2021.
    # This corresponds to boringssl.googlesource.com/boringssl tag fips-20210429.
    ENV ClangV=12
    RUN apt-get update && \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. 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)
  3. src/go/internal/gccgoimporter/testdata/time.gox

    type <type 1>;
    const February <type 18> = 2 ;
    func FixedZone (name <type -16>, offset <type -11>) <type 15>;
    const Friday <type 19> = 5 ;
    const Hour <type 1> = 3600000000000 ;
    const January <type 18> = 1 ;
    const July <type 18> = 7 ;
    const June <type 18> = 6 ;
    const Kitchen = "3:04PM";
    func LoadLocation (name <type -16>) (? <type 15>, ? <type -19>);
    var Local <type 15>;
    type <type 6>;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/time/format.go

    	"May",
    	"Jun",
    	"Jul",
    	"Aug",
    	"Sep",
    	"Oct",
    	"Nov",
    	"Dec",
    }
    
    var longMonthNames = []string{
    	"January",
    	"February",
    	"March",
    	"April",
    	"May",
    	"June",
    	"July",
    	"August",
    	"September",
    	"October",
    	"November",
    	"December",
    }
    
    // match reports whether s1 and s2 match ignoring case.
    // It is assumed s1 and s2 are the same length.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. 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)
  9. src/time/time.go

    }
    
    // A Month specifies a month of the year (January = 1, ...).
    type Month int
    
    const (
    	January Month = 1 + iota
    	February
    	March
    	April
    	May
    	June
    	July
    	August
    	September
    	October
    	November
    	December
    )
    
    // String returns the English name of the month ("January", "February", ...).
    func (m Month) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. 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