Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 480 for testOk (0.1 sec)

  1. src/cmd/compile/internal/test/test.go

    // Copyright 2016 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.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:34:11 UTC 2023
    - 173 bytes
    - Viewed (0)
  2. src/cmd/internal/test2json/testdata/ascii.test

    Russ Cox <******@****.***> 1510196478 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 17:55:43 UTC 2017
    - 381 bytes
    - Viewed (0)
  3. src/cmd/internal/test2json/testdata/issue23920.test

    Daniel Martí <******@****.***> 1520106833 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 10 10:13:25 UTC 2018
    - 223 bytes
    - Viewed (0)
  4. src/cmd/internal/test2json/testdata/timeout.test

    === RUN   Test
    panic: test timed out after 1s
    
    FAIL	p	1.111s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 66 bytes
    - Viewed (0)
  5. src/cmd/internal/test2json/testdata/unicode.test

    Russ Cox <******@****.***> 1510196478 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 10 17:55:43 UTC 2017
    - 740 bytes
    - Viewed (0)
  6. src/cmd/trace/testdata/go122.test

    Carlos Amedee <******@****.***> 1715092668 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  7. pkg/kubelet/kubeletconfig/util/test/test.go

    	}
    }
    
    // SkipRest returns true if there was a non-nil error or if we expected an error that didn't happen,
    // and logs the appropriate error on the test object.
    // The return value indicates whether we should skip the rest of the test case due to the error result.
    func SkipRest(t *testing.T, desc string, err error, contains string) bool {
    	if err != nil {
    		if len(contains) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 19 16:18:53 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  8. pkg/test/framework/test.go

    	// RequiresSingleNetwork ensures that clusters are in the same network
    	//
    	// Deprecated: Tests should not make assumptions regarding number of networks.
    	RequiresSingleNetwork() Test
    	// TopLevel marks a test as a "top-level test" meaning a container test that has many subtests.
    	// Resources created at this level will be in-scope for dumping when any descendant test fails.
    	TopLevel() Test
    	// Run the test, supplied as a lambda.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. pkg/monitoring/monitortest/test.go

    	"go.opentelemetry.io/otel/attribute"
    
    	"istio.io/istio/pkg/lazy"
    	"istio.io/istio/pkg/maps"
    	"istio.io/istio/pkg/monitoring"
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    type MetricsTest struct {
    	t      test.Failer
    	reg    prometheus.Gatherer
    	deltas map[metricKey]float64
    }
    
    type metricKey struct {
    	name  string
    	attrs attribute.Set
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 13 16:04:48 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/library/test.go

    	"github.com/google/cel-go/common/types/ref"
    )
    
    // Test provides a test() function that returns true.
    func Test(options ...TestOption) cel.EnvOption {
    	t := &testLib{version: math.MaxUint32}
    	for _, o := range options {
    		t = o(t)
    	}
    	return cel.Lib(t)
    }
    
    type testLib struct {
    	version uint32
    }
    
    func (*testLib) LibraryName() string {
    	return "k8s.test"
    }
    
    type TestOption func(*testLib) *testLib
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top