Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 207 for testLang (0.27 sec)

  1. src/testing/testing.go

    				// If this happens during testing of package testing it could be that
    				// package testing's own logic for when to run a test is broken,
    				// in which case every test will run nothing and succeed,
    				// with no obvious way to detect this problem (since no tests are running).
    				// So make 'no tests to run' a hard failure when testing package testing itself.
    				fmt.Print(chatty.prefix(), "FAIL: package testing must run tests\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. pkg/volume/testing/testing.go

    limitations under the License.
    */
    
    package testing
    
    import (
    	"fmt"
    	"os"
    	"path/filepath"
    	goruntime "runtime"
    	"strings"
    	"sync"
    	"testing"
    	"time"
    
    	"k8s.io/klog/v2"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/utils/exec"
    	testingexec "k8s.io/utils/exec/testing"
    	utilstrings "k8s.io/utils/strings"
    
    	v1 "k8s.io/api/core/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    stNG.html[TestNG API] that is used by Gradle's TestNG integration executes tests in unpredictable order by default.footnote:[The TestNG documentation contains more details about test ordering when working with `testng.xml` files: http://testng.org/doc/documentation-main.html#testng-xml[].] The ability to preserve test execution order was introduced with TestNG version 5.14.5. Setting the `preserveOrder` property to `true` for an older TestNG version will cause the build to fail.
    
    .Preserving...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  4. src/math/all_test.go

    	x := 0.0
    	for i := 0; i < b.N; i++ {
    		x = Erf(.5)
    	}
    	GlobalF = x
    }
    
    func BenchmarkErfc(b *testing.B) {
    	x := 0.0
    	for i := 0; i < b.N; i++ {
    		x = Erfc(.5)
    	}
    	GlobalF = x
    }
    
    func BenchmarkErfinv(b *testing.B) {
    	x := 0.0
    	for i := 0; i < b.N; i++ {
    		x = Erfinv(.5)
    	}
    	GlobalF = x
    }
    
    func BenchmarkErfcinv(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 07 17:39:26 UTC 2023
    - 86.8K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

                return spec;
            }
    
            @Override
            public SuiteSpec testNG(String name, TemplateLibraryVersionProvider libraryVersionProvider) {
                final SuiteSpec spec = new SuiteSpec(null, name, SuiteSpec.TestSuiteFramework.TEST_NG, libraryVersionProvider.getVersion("testng"), builder);
                suites.add(spec);
                return spec;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  6. .teamcity/test-buckets.json

    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"testing-jvm",
    					"configuration-cache",
    					"precondition-tester",
    					"model-groovy",
    					"toolchains-jvm",
    					"resources",
    					"execution",
    					"resources-http",
    					"internal-performance-testing",
    					"internal-integ-testing",
    					"build-cache-spi"
    				]
    			},
    			{
    				"parallelizationMethod":{
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  7. cmd/storage-datatypes_gen_test.go

    package cmd
    
    // Code generated by github.com/tinylib/msgp DO NOT EDIT.
    
    import (
    	"bytes"
    	"testing"
    
    	"github.com/tinylib/msgp/msgp"
    )
    
    func TestMarshalUnmarshalBaseOptions(t *testing.T) {
    	v := BaseOptions{}
    	bts, err := v.MarshalMsg(nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    	left, err := v.UnmarshalMsg(bts)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(left) > 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 62.6K bytes
    - Viewed (0)
  8. src/strings/strings_test.go

    }
    
    func BenchmarkIndexHard1(b *testing.B) { benchmarkIndexHard(b, "<>") }
    func BenchmarkIndexHard2(b *testing.B) { benchmarkIndexHard(b, "</pre>") }
    func BenchmarkIndexHard3(b *testing.B) { benchmarkIndexHard(b, "<b>hello world</b>") }
    func BenchmarkIndexHard4(b *testing.B) {
    	benchmarkIndexHard(b, "<pre><b>hello</b><strong>world</strong></pre>")
    }
    
    func BenchmarkLastIndexHard1(b *testing.B) { benchmarkLastIndexHard(b, "<>") }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/test/testdata/zero_test.go

    // Code generated by gen/zeroGen.go. DO NOT EDIT.
    
    package main
    
    import "testing"
    
    type Z1 struct {
    	pre  [8]byte
    	mid  [1]byte
    	post [8]byte
    }
    
    //go:noinline
    func zero1_ssa(x *[1]byte) {
    	*x = [1]byte{}
    }
    func testZero1(t *testing.T) {
    	a := Z1{[8]byte{255, 255, 255, 255, 255, 255, 255, 255}, [1]byte{255}, [8]byte{255, 255, 255, 255, 255, 255, 255, 255}}
    	zero1_ssa(&a.mid)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 49.6K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_server_test.go

    		t.Error("the preference order should not depend on Config.CipherSuites")
    	}
    }
    
    func TestSCTHandshake(t *testing.T) {
    	t.Run("TLSv12", func(t *testing.T) { testSCTHandshake(t, VersionTLS12) })
    	t.Run("TLSv13", func(t *testing.T) { testSCTHandshake(t, VersionTLS13) })
    }
    
    func testSCTHandshake(t *testing.T, version uint16) {
    	expected := [][]byte{[]byte("certificate"), []byte("transparency")}
    	serverConfig := &Config{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top