Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,355 for doPing (0.11 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

    /**< Retrieves the number of suites completed during the previous run (reset each run). */
    CU_EXPORT unsigned int CU_get_number_of_suites_failed(void);
    /**< Retrieves the number of suites which failed to initialize during the previous run (reset each run). */
    CU_EXPORT unsigned int CU_get_number_of_suites_inactive(void);
    /**< Retrieves the number of inactive suites found during the previous run (reset each run). */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  2. src/crypto/ecdsa/notboring.go

    // license that can be found in the LICENSE file.
    
    //go:build !boringcrypto
    
    package ecdsa
    
    import "crypto/internal/boring"
    
    func boringPublicKey(*PublicKey) (*boring.PublicKeyECDSA, error) {
    	panic("boringcrypto: not available")
    }
    func boringPrivateKey(*PrivateKey) (*boring.PrivateKeyECDSA, error) {
    	panic("boringcrypto: not available")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:22 UTC 2022
    - 451 bytes
    - Viewed (0)
  3. src/crypto/rsa/notboring.go

    // license that can be found in the LICENSE file.
    
    //go:build !boringcrypto
    
    package rsa
    
    import "crypto/internal/boring"
    
    func boringPublicKey(*PublicKey) (*boring.PublicKeyRSA, error) {
    	panic("boringcrypto: not available")
    }
    func boringPrivateKey(*PrivateKey) (*boring.PrivateKeyRSA, error) {
    	panic("boringcrypto: not available")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 29 14:23:22 UTC 2022
    - 445 bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ExpectMaxNRequestsThenReleaseOne.java

        @Override
        void doReleaseAction(BlockingHttpServer.BlockingHandler handler, int yetToBeReceived) {
            if (yetToBeReceived > 0) {
                handler.release(1);
            } else {
                // No more requests coming to auto release, so release all remaining requests
                handler.releaseAll();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/tutorial/stopExecutionException/kotlin/build.gradle.kts

    val compile by tasks.registering {
        doLast {
            println("We are doing the compile.")
        }
    }
    
    compile {
        doFirst {
            // Here you would put arbitrary conditions in real life.
            if (true) {
                throw StopExecutionException()
            }
        }
    }
    tasks.register("myTask") {
        dependsOn(compile)
        doLast {
            println("I am not affected")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 380 bytes
    - Viewed (0)
  6. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerMechanicalFailureIntegrationTest.groovy

            t.cause.cause.class.name == GradleException.name // not the same class because it's coming from the tooling client
            t.cause.cause.message.startsWith("Unable to start the daemon process.")
        }
    
        @NoDebug
        @HideEnvVariableValuesInDaemonLog
        def "daemon dies during build execution"() {
            given:
            buildFile << """
                task helloWorld {
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/discovery/discovery.go

    	kubeconfigutil "k8s.io/kubernetes/cmd/kubeadm/app/util/kubeconfig"
    )
    
    // TokenUser defines token user
    const TokenUser = "tls-bootstrap-token-user"
    
    // For returns a kubeconfig object that can be used for doing the TLS Bootstrap with the right credentials
    // Also, before returning anything, it makes sure it can trust the API Server
    func For(cfg *kubeadmapi.JoinConfiguration) (*clientcmdapi.Config, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. src/crypto/sha256/sha256.go

    // state of the hash.
    func New() hash.Hash {
    	if boring.Enabled {
    		return boring.NewSHA256()
    	}
    	d := new(digest)
    	d.Reset()
    	return d
    }
    
    // New224 returns a new hash.Hash computing the SHA224 checksum.
    func New224() hash.Hash {
    	if boring.Enabled {
    		return boring.NewSHA224()
    	}
    	d := new(digest)
    	d.is224 = true
    	d.Reset()
    	return d
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:50:58 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/apiclient/dryrunclient.go

    // This just makes it easier to catch all actions that has a name; instead of hard-coding all request that has it associated
    type actionWithName interface {
    	core.Action
    	GetName() string
    }
    
    // actionWithObject is the generic interface for an action that has an object associated with it
    // This just makes it easier to catch all actions that has an object; instead of hard-coding all request that has it associated
    type actionWithObject interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 09:49:59 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  10. src/crypto/boring/boring_test.go

    //go:build boringcrypto
    
    package boring_test
    
    import (
    	"crypto/boring"
    	"runtime"
    	"testing"
    )
    
    func TestEnabled(t *testing.T) {
    	supportedPlatform := runtime.GOOS == "linux" && (runtime.GOARCH == "amd64" || runtime.GOARCH == "arm64")
    	if supportedPlatform && !boring.Enabled() {
    		t.Error("Enabled returned false on a supported platform")
    	} else if !supportedPlatform && boring.Enabled() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 21:28:09 UTC 2022
    - 620 bytes
    - Viewed (0)
Back to top