Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 251 for testChain (0.15 sec)

  1. src/cmd/go/testdata/script/clean_testcache.txt

    # test results that need to be invalidated in the first place.
    env GOCACHE=$WORK/nonexistent
    go clean -testcache
    ! exists $WORK/nonexistent
    
    -- x/x_test.go --
    package x_test
    import (
        "testing"
    )
    func TestMain(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 17:22:49 UTC 2022
    - 680 bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/certs/main_test.go

    limitations under the License.
    */
    
    package certs
    
    import (
    	"testing"
    
    	pkiutiltesting "k8s.io/kubernetes/cmd/kubeadm/app/util/pkiutil/testing"
    )
    
    func TestMain(m *testing.M) {
    	pkiutiltesting.RunWithPrivateKeyFixtureDirectory(m)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jul 04 08:41:27 UTC 2021
    - 768 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_fail_newline.txt

    module example
    
    go 1.18
    -- fail/fail_test.go --
    package fail
    
    import (
    	"os"
    	"testing"
    )
    
    func TestMain(m *testing.M) {
    	os.Stderr.WriteString("exitcode=1")
    	os.Exit(1)
    }
    -- skip/skip_test.go --
    package skip
    
    import (
    	"os"
    	"testing"
    )
    
    func TestMain(m *testing.M) {
    	os.Stderr.WriteString("skipping")
    	os.Exit(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 04 21:33:23 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  4. tests/integration/pilot/main_test.go

    	// its doing something unique to that specific test.
    	apps = deployment.SingleNamespaceView{}
    )
    
    // TestMain defines the entrypoint for pilot tests using a standard Istio installation.
    // If a test requires a custom install it should go into its own package, otherwise it should go
    // here to reuse a single install across tests.
    func TestMain(m *testing.M) {
    	framework.
    		NewSuite(m).
    		Setup(istio.Setup(&i, nil)).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Sep 08 22:15:56 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/leak_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package core
    
    import (
    	"testing"
    
    	"istio.io/istio/tests/util/leak"
    )
    
    func TestMain(m *testing.M) {
    	// CheckMain asserts that no goroutines are leaked after a test package exits.
    	leak.CheckMain(m)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 789 bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceentry/leak_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package serviceentry
    
    import (
    	"testing"
    
    	"istio.io/istio/tests/util/leak"
    )
    
    func TestMain(m *testing.M) {
    	// CheckMain asserts that no goroutines are leaked after a test package exits.
    	leak.CheckMain(m)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 14 19:26:09 UTC 2021
    - 797 bytes
    - Viewed (0)
  7. security/pkg/nodeagent/cache/leak_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package cache
    
    import (
    	"testing"
    
    	"istio.io/istio/tests/util/leak"
    )
    
    func TestMain(m *testing.M) {
    	// CheckMain asserts that no goroutines are leaked after a test package exits.
    	leak.CheckMain(m)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 14 19:26:09 UTC 2021
    - 790 bytes
    - Viewed (0)
  8. tests/integration/helm/upgrade/main_test.go

    //  See the License for the specific language governing permissions and
    //  limitations under the License.
    
    package helmupgrade
    
    import (
    	"testing"
    
    	"istio.io/istio/pkg/test/framework"
    )
    
    func TestMain(m *testing.M) {
    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		Setup(initVersions).
    		RequireSingleCluster().
    		Run()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 07 15:01:04 UTC 2023
    - 852 bytes
    - Viewed (0)
  9. tests/integration/operator/main_test.go

    //  See the License for the specific language governing permissions and
    //  limitations under the License.
    
    package operator
    
    import (
    	"testing"
    
    	"istio.io/istio/pkg/test/framework"
    )
    
    func TestMain(m *testing.M) {
    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		RequireSingleCluster().
    		Run()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 11 21:47:00 UTC 2022
    - 826 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_trimpath_main.txt

    	println(file)
    }
    
    -- main_test.go --
    package main
    
    import (
    	"runtime"
    	"testing"
    )
    
    func PrintFileForTest() {
    	_, file, _, _ := runtime.Caller(0)
    	println(file)
    }
    
    func TestMain(m *testing.M) {
    	PrintFile()
    	PrintFileForTest()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 12 15:17:33 UTC 2021
    - 477 bytes
    - Viewed (0)
Back to top