Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,355 for doPing (0.1 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/GradleMetadataResolveRunner.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures
    
    import groovy.transform.CompileStatic
    
    // TODO: rename the class. Not doing it as part of Spock2 upgrade change so that there is less non-essential changes noise
    @CompileStatic
    class GradleMetadataResolveRunner  {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/fold.go

    // license that can be found in the LICENSE file.
    
    package cases
    
    import "golang.org/x/text/transform"
    
    type caseFolder struct{ transform.NopResetter }
    
    // caseFolder implements the Transformer interface for doing case folding.
    func (t *caseFolder) Transform(dst, src []byte, atEOF bool) (nDst, nSrc int, err error) {
    	c := context{dst: dst, src: src, atEOF: atEOF}
    	for c.next() {
    		foldFull(&c)
    		c.checkpoint()
    	}
    	return c.ret()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 935 bytes
    - Viewed (0)
  3. docs/en/docs/advanced/events.md

        You can probably skip this part.
    
    There's an alternative way to define this logic to be executed during *startup* and during *shutdown*.
    
    You can define event handlers (functions) that need to be executed before the application starts up, or when the application is shutting down.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. src/crypto/rsa/rsa.go

    	k := pub.Size()
    	if len(msg) > k-2*hash.Size()-2 {
    		return nil, ErrMessageTooLong
    	}
    
    	if boring.Enabled && random == boring.RandReader {
    		bkey, err := boringPublicKey(pub)
    		if err != nil {
    			return nil, err
    		}
    		return boring.EncryptRSAOAEP(hash, hash, bkey, msg, label)
    	}
    	boring.UnreachableExceptTests()
    
    	hash.Write(label)
    	lHash := hash.Sum(nil)
    	hash.Reset()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ModelSchemaExtractionStrategy.java

    public interface ModelSchemaExtractionStrategy {
        /**
         * Potentially extracts the schema for a type. If this strategy does not recognize the type, this method should return without doing anything.
         *
         * If the strategy does recognize the type, it should call {@link ModelSchemaExtractionContext#found(org.gradle.model.internal.manage.schema.ModelSchema)} with the resulting schema, or one of the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. src/crypto/internal/boring/build.sh

    #!/bin/bash
    # Copyright 2022 The Go Authors. All rights reserved.
    # Use of this source code is governed by a BSD-style
    # license that can be found in the LICENSE file.
    
    # This shell script uses Docker to run build-boring.sh and build-goboring.sh,
    # which build goboringcrypto_linux_$GOARCH.syso according to the Security Policy.
    # Currently, amd64 and arm64 are permitted.
    
    set -e
    set -o pipefail
    
    GOARCH=${GOARCH:-$(go env GOARCH)}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. test/maplinear.go

    	// O(n lg n) time.  Fortunately, the checkLinear test
    	// leaves enough wiggle room to include n lg n time
    	// (it actually tests for O(n^log_2(3)).
    	// To prevent false positives, average away variation
    	// by doing multiple rounds within a single run.
    	checkLinear("iterdelete", 2500, func(n int) {
    		for round := 0; round < 4; round++ {
    			m := map[int]int{}
    			for i := 0; i < n; i++ {
    				m[i] = i
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. src/crypto/ecdsa/ecdsa.go

    	randutil.MaybeReadByte(rand)
    
    	if boring.Enabled && rand == boring.RandReader {
    		x, y, d, err := boring.GenerateKeyECDSA(c.Params().Name)
    		if err != nil {
    			return nil, err
    		}
    		return &PrivateKey{PublicKey: PublicKey{Curve: c, X: bbig.Dec(x), Y: bbig.Dec(y)}, D: bbig.Dec(d)}, nil
    	}
    	boring.UnreachableExceptTests()
    
    	switch c.Params() {
    	case elliptic.P224().Params():
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. plugin/pkg/admission/antiaffinity/doc.go

    // this admission controller, a user could maliciously or accidentally
    // specify that their pod (once it has scheduled) should block other
    // pods from scheduling into the same zone or some other large
    // topology, essentially DoSing the cluster.  In the future we will
    // address this problem more fully by using quota and priority, but
    // for now this admission controller provides a simple protection, on
    // the assumption that the only legitimate use of hard pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 18:00:06 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/util/concurrent/AbstractFutureBenchmarks.java

         * <p>The default {@link AbstractFuture} implementation throws {@code InterruptedException} if
         * the current thread is interrupted before or during the call, even if the value is already
         * available.
         *
         * @throws InterruptedException if the current thread was interrupted before or during the call
         *     (optional but recommended).
         * @throws CancellationException {@inheritDoc}
         */
        @CanIgnoreReturnValue
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 09 15:17:25 UTC 2018
    - 13.6K bytes
    - Viewed (0)
Back to top