Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 721 for vand (0.1 sec)

  1. src/cmd/vendor/golang.org/x/sys/plan9/mkall.sh

    # Some C libraries present alternate versions for binary compatibility
    # and translate them on the way in and out of system calls, but
    # there is almost always a #define that can get the real ones.
    # See types_darwin.c and types_linux.c for examples.
    #
    # * zerror_${GOOS}_${GOARCH}.go
    #
    # This machine-generated file defines the system's error numbers,
    # error strings, and signal numbers.  The generator is "mkerrors.sh".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  2. src/crypto/ecdh/x25519.go

    // be used for equality checks and switch statements.
    func X25519() Curve { return x25519 }
    
    var x25519 = &x25519Curve{}
    
    type x25519Curve struct{}
    
    func (c *x25519Curve) String() string {
    	return "X25519"
    }
    
    func (c *x25519Curve) GenerateKey(rand io.Reader) (*PrivateKey, error) {
    	key := make([]byte, x25519PrivateKeySize)
    	randutil.MaybeReadByte(rand)
    	if _, err := io.ReadFull(rand, key); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/golang.org_x_useinternal_v0.1.0.txt

    written by hand — uses an internal package from another module
    (https://golang.org/s/go14internal)
    
    -- .mod --
    module golang.org/x/useinternal
    -- .info --
    {"Version":"v0.1.0","Name":"","Short":"","Time":"2018-07-25T17:24:00Z"}
    -- go.mod --
    module golang.org/x/useinternal
    -- useinternal.go --
    package useinternal
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 01:58:53 UTC 2018
    - 356 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/mod/patch.example.com_direct_v1.0.0.txt

    patch.example.com/direct v1.0.0
    written by hand
    
    -- .mod --
    module patch.example.com/direct
    
    require (
    	patch.example.com/indirect v1.0.0
    )
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module patch.example.com/direct
    
    require (
    	patch.example.com/indirect v1.0.0
    )
    -- direct.go --
    package direct
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 16:37:07 UTC 2019
    - 336 bytes
    - Viewed (0)
  5. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

        val ciGroup = "CI Lifecycle"
    
        register("quickTest") {
            description = "Run all unit, integration and cross-version (against latest release) tests in embedded execution mode"
            group = ciGroup
        }
    
        register("platformTest") {
            description = "Run all unit, integration and cross-version (against latest release) tests in forking execution mode"
            group = ciGroup
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. src/internal/trace/gc.go

    	// bandDur.
    	bands []mmuBand
    	// bandDur is the duration of each band.
    	bandDur int64
    }
    
    type mmuBand struct {
    	// minUtil is the minimum instantaneous mutator utilization in
    	// this band.
    	minUtil float64
    	// cumUtil is the cumulative total mutator utilization between
    	// time 0 and the left edge of this band.
    	cumUtil totalUtil
    
    	// integrator is the integrator for the left edge of this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/example.net_pkgadded_v1.1.0.txt

    Written by hand.
    Test module with a root package added in v1.1.0
    and a subpackage added in v1.2.0.
    
    -- .mod --
    module example.net/pkgadded
    
    go 1.16
    -- .info --
    {"Version":"v1.1.0"}
    -- go.mod --
    module example.net/pkgadded
    
    go 1.16
    -- README.txt --
    We will add the package example.net/pkgadded/subpkg in v1.2.0.
    -- pkgadded.go --
    // Package pkgadded was added in v1.1.0.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 17:59:55 UTC 2020
    - 387 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/example.com_join_v1.0.0.txt

    Written by hand.
    Test case for package moved into a parent module.
    
    -- .mod --
    module example.com/join
    -- .info --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 09 21:00:53 UTC 2018
    - 137 bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/attributes/AttributeMatchingStrategy.java

         *
         * @param comparator the comparator to use for compatibility and disambiguation
         */
        void ordered(Comparator<T> comparator);
    
        /**
         * <p>A short-hand way to define both a compatibility rule and
         * a disambiguation rule based on an order defined by the provided
         * {@link Comparator}.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:53 UTC 2018
    - 2.2K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ArtifactResolutionExpectationSpec.groovy

            withModuleMetadata(expectation)
            withoutModuleMetadata(expectation)
        }
    
        /**
         * Short-hand notation for expecting a list of files independently of the fact module metadata is used or not
         * @param fileNames
         */
        void expectFiles(String... fileNames) {
            always {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top