Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,629 for testLang (0.14 sec)

  1. pilot/pkg/xds/cds_test.go

    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/util/sets"
    )
    
    func TestCDS(t *testing.T) {
    	s := xds.NewFakeDiscoveryServer(t, xds.FakeOptions{})
    	ads := s.ConnectADS().WithType(v3.ClusterType)
    	ads.RequestResponseAck(t, nil)
    }
    
    func TestSAN(t *testing.T) {
    	labels := map[string]string{"app": "test"}
    	pod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "pod",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 02:06:39 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/testng/TestNGOptionsTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.tasks.testing.testng
    
    import org.gradle.api.file.Directory
    import org.gradle.api.file.ProjectLayout
    import org.gradle.util.TestUtil
    import spock.lang.Specification
    
    class TestNGOptionsTest extends Specification {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. src/internal/runtime/atomic/bench_test.go

    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			atomic.Xadd(ptr, 1)
    		}
    	})
    }
    
    func BenchmarkXadd64(b *testing.B) {
    	var x uint64
    	ptr := &x
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    			atomic.Xadd64(ptr, 1)
    		}
    	})
    }
    
    func BenchmarkCas(b *testing.B) {
    	var x uint32
    	x = 1
    	ptr := &x
    	b.RunParallel(func(pb *testing.PB) {
    		for pb.Next() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/test_fail_fast.txt

    package failfast
    
    import "testing"
    
    func TestA(t *testing.T) {
    	// Edge-case testing, mixing unparallel tests too
    	t.Logf("LOG: %s", t.Name())
    }
    
    func TestFailingA(t *testing.T) {
    	t.Errorf("FAIL - %s", t.Name())
    }
    
    func TestB(t *testing.T) {
    	// Edge-case testing, mixing unparallel tests too
    	t.Logf("LOG: %s", t.Name())
    }
    
    func TestParallelFailingA(t *testing.T) {
    	t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 19:25:24 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/ListTestSuiteBuilder.java

    import com.google.common.collect.testing.features.Feature;
    import com.google.common.collect.testing.testers.CollectionSerializationEqualTester;
    import com.google.common.collect.testing.testers.ListAddAllAtIndexTester;
    import com.google.common.collect.testing.testers.ListAddAllTester;
    import com.google.common.collect.testing.testers.ListAddAtIndexTester;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/AbstractCollectionTestSuiteBuilder.java

    import com.google.common.collect.testing.testers.CollectionCreationTester;
    import com.google.common.collect.testing.testers.CollectionEqualsTester;
    import com.google.common.collect.testing.testers.CollectionIsEmptyTester;
    import com.google.common.collect.testing.testers.CollectionIteratorTester;
    import com.google.common.collect.testing.testers.CollectionRemoveAllTester;
    import com.google.common.collect.testing.testers.CollectionRemoveTester;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-spi.h

        ::testing::TestPartResultArray gtest_failures;\
        ::testing::internal::SingleFailureChecker gtest_checker(\
            &gtest_failures, ::testing::TestPartResult::kNonFatalFailure, \
            (substr));\
        {\
          ::testing::ScopedFakeTestPartResultReporter gtest_reporter(\
              ::testing::ScopedFakeTestPartResultReporter::INTERCEPT_ALL_THREADS, \
              &gtest_failures);\
          if (::testing::internal::AlwaysTrue()) { statement; }\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  8. src/testing/benchmark_test.go

    		}
    	})
    }
    
    func TestRunParallelFail(t *testing.T) {
    	testing.Benchmark(func(b *testing.B) {
    		b.RunParallel(func(pb *testing.PB) {
    			// The function must be able to log/abort
    			// w/o crashing/deadlocking the whole benchmark.
    			b.Log("log")
    			b.Error("error")
    		})
    	})
    }
    
    func TestRunParallelFatal(t *testing.T) {
    	testing.Benchmark(func(b *testing.B) {
    		b.RunParallel(func(pb *testing.PB) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. pkg/util/sets/set_test.go

    	b.Run("Difference", func(b *testing.B) {
    		for i := 0; i < b.N; i++ {
    			s1.Difference(s2)
    		}
    	})
    	b.Run("DifferenceInPlace", func(b *testing.B) {
    		for i := 0; i < b.N; i++ {
    			s1.DifferenceInPlace(s2)
    		}
    	})
    	b.Run("Intersection", func(b *testing.B) {
    		for i := 0; i < b.N; i++ {
    			s1.Intersection(s2)
    		}
    	})
    	b.Run("IntersectInPlace", func(b *testing.B) {
    		for i := 0; i < b.N; i++ {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/AbstractCollectionTestSuiteBuilder.java

    import com.google.common.collect.testing.testers.CollectionCreationTester;
    import com.google.common.collect.testing.testers.CollectionEqualsTester;
    import com.google.common.collect.testing.testers.CollectionForEachTester;
    import com.google.common.collect.testing.testers.CollectionIsEmptyTester;
    import com.google.common.collect.testing.testers.CollectionIteratorTester;
    import com.google.common.collect.testing.testers.CollectionRemoveAllTester;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top