Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for testF (0.52 sec)

  1. src/sync/atomic/atomic_test.go

    import (
    	"fmt"
    	"reflect"
    	"runtime"
    	"runtime/debug"
    	"strings"
    	. "sync/atomic"
    	"testing"
    	"unsafe"
    )
    
    // Tests of correct behavior, without contention.
    // (Does the function work as advertised?)
    //
    // Test that the Add functions add correctly.
    // Test that the CompareAndSwap functions actually
    // do the comparison and the swap correctly.
    //
    // The loop over power-of-two values is meant to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context_test.go

    	}{
    		{
    			proxyNs:     "test1",
    			serviceNs:   "test1",
    			host:        testhost,
    			wantSubsets: []string{"subset1", "subset2"},
    		},
    		{
    			proxyNs:     "test1",
    			serviceNs:   "test2",
    			host:        testhost,
    			wantSubsets: []string{"subset1", "subset2"},
    		},
    		{
    			proxyNs:     "test2",
    			serviceNs:   "test1",
    			host:        testhost,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    	// storing the services out of time order to test that it's being sorted properly.
    	testOutboundListenerConflict(t,
    		buildServiceWithPort("test1.com", 3306, protocol.HTTP, tnow.Add(1*time.Second)),
    		buildServiceWithPort("test2.com", 3306, protocol.MySQL, tnow))
    	testOutboundListenerConflict(t,
    		buildServiceWithPort("test1.com", 9999, protocol.HTTP, tnow.Add(1*time.Second)),
    		buildServiceWithPort("test2.com", 9999, protocol.MySQL, tnow))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  4. src/cmd/go/go_test.go

    	tg.grepStdout(`^bytes.test$`, "missing test main")
    	tg.grepStdout(`^bytes$`, "missing real bytes")
    	tg.grepStdout(`^bytes \[bytes.test\]$`, "unexpected test copy of bytes")
    	tg.grepStdoutNot(`^testing \[bytes.test\]$`, "unexpected test copy of testing")
    	tg.grepStdoutNot(`^testing$`, "unexpected real copy of testing")
    
    	tg.run("list", "-test", "cmd/buildid", "cmd/doc")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  5. src/cmd/dist/test.go

    			skipFunc = opt.skip
    		}
    	}
    	// Register each test package as a separate test.
    	register1 := func(test *goTest) {
    		if test.variant == "" {
    			panic("empty variant")
    		}
    		name := testName(test.pkg, test.variant)
    		t.addTest(name, heading, func(dt *distTest) error {
    			if skipFunc != nil {
    				msg, skip := skipFunc(dt)
    				if skip {
    					test.printSkip(t, msg)
    					return nil
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            then:
            output.count("transform") == 3
            outputContains("transform external test-1.2.jar")
            outputContains("transform local test2-1.5.thing using [test-1.2.jar.external]")
            outputContains("transform local test3-1.5.thing using [test-1.2.jar.external]")
            outputContains("artifacts = [test2-1.5.thing.local (test:test2:1.5), test3-1.5.thing.local (test:test3:1.5)]")
    
            when:
            run(":resolveArtifacts")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    		NamespaceParam("test")
    
    	test := &testVisitor{}
    
    	err := b.Do().Visit(test.Handle)
    	if err != nil || len(test.Infos) != 1 && test.Infos[0].Namespace != "foo" {
    		t.Fatalf("unexpected response: %v %#v", err, test.Infos)
    	}
    
    	b = newDefaultBuilder().
    		FilenameParam(true, &FilenameOptions{Recursive: false, Filenames: []string{s.URL}}).
    		NamespaceParam("test")
    
    	test = &testVisitor{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                    implementation(libs.test1) {
                        because("reason1")
    
                        exclude(group: "test-group", module: "test-module")
                        artifact {
                            name = "test-name"
                            classifier = "test-classifier"
                            extension = "test-ext"
                            type = "test-type"
                            url = "test-url"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/test/test.go

    test ./...', and even 'go test .'). In this mode, go test compiles
    and tests each of the packages listed on the command line. If a
    package test passes, go test prints only the final 'ok' summary
    line. If a package test fails, go test prints the full test output.
    If invoked with the -bench or -v flag, go test prints the full
    output even for passing package tests, in order to display the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  10. pilot/pkg/model/virtualservice_test.go

    		buildHTTPService("test.com", visibility.Public, "8.8.8.8", "not-default", 8080),
    		buildHTTPService("test-private.com", visibility.Private, "9.9.9.9", "not-default", 80, 70),
    		buildHTTPService("test-private-2.com", visibility.Private, "9.9.9.10", "not-default", 60),
    		buildHTTPService("test-headless.com", visibility.Public, wildcardIP, "not-default", 8888),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
Back to top