Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 172 for testOk2 (0.16 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/TestDisplayNameJUnit5CrossVersionSpec.groovy

                                    }
                                }
                                testMethodSuite("test2(String)") {
                                    operationDisplayName "2nd test"
                                    testDisplayName "2nd test"
                                    test("test2(String)[1]") {
                                        operationDisplayName "1 ==> the test for 'foo'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. test/armimm.go

    	return x &^ c64a
    }
    
    // Note: x-c gets rewritten to x+(-c), so SUB and SBC are not directly testable.
    // I disabled that rewrite rule before running this test.
    
    func main() {
    	test32()
    	test64()
    }
    
    func test32() {
    	var a uint32 = 0x11111111
    	var want, got uint32
    	if want, got = a+c32a, add32a(a); got != want {
    		panic(fmt.Sprintf("add32a(%x) = %x, want %x", a, got, want))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 11 13:53:54 UTC 2017
    - 3.9K bytes
    - Viewed (0)
  3. test/typeparam/issue44688.go

    	m1x(b1, arg)
    	// TODO(khr): reenable these.
    	//m2x := B2[T].m2
    	//m2x(b2, arg)
    
    	// calling method values
    	m1v := b1.m1
    	m1v(arg)
    	m2v := b1.m2
    	m2v(arg)
    	b2v := b2.m2
    	b2v(arg)
    }
    
    func test2() {
    	// calling embedded methods
    	var b1 B1[string]
    	b1.A1 = &A1[string]{}
    	b1.A2 = &ImpA2[string]{}
    
    	b1.A1.m1("")
    	b1.m1("")
    
    	b1.A2.m2("")
    	b1.m2("")
    
    	var b2 B2[string]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  4. test/fixedbugs/issue5470.dir/b.go

    // Copyright 2013 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.
    
    package b
    
    import "./a"
    
    func main() {
    	a.Test1()
    	a.Test2()
    	a.Test3()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 07:01:43 UTC 2013
    - 234 bytes
    - Viewed (0)
  5. test/fixedbugs/issue5607.go

    	var innerTest = func() {
    		// Used to crash trying to compile this line as
    		// part of init() (funcdepth mismatch).
    		var _, x = mymap["a"]
    		println(x)
    	}
    	innerTest()
    }
    
    var Test2 = func() {
    	// The following initializer should not be part of init()
    	// The compiler used to generate a call to Panic() in init().
    	var _, x = Panic()
    	_ = x
    }
    
    func Panic() (int, int) {
    	panic("omg")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 02 21:54:34 UTC 2013
    - 777 bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/core/collection/ArrayMapTest.java

         * @throws Exception
         */
        @Before
        public void setUp() throws Exception {
            map = new ArrayMap<String, String>();
            map.put(null, null);
            map.put("1", "test");
            map.put("2", "test2");
        }
    
        /**
         * @throws Exception
         */
        @After
        public void tearDown() throws Exception {
            map = null;
        }
    
        /**
         * @throws Exception
         */
        @Test
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/util/DocMapTest.java

            Map<String, Object> value = new LinkedHashMap<>();
            DocMap docMap = new DocMap(value);
            assertTrue(docMap.isEmpty());
            value.clear();
    
            List<String> keys = Arrays.asList("test_2", "test_0", "lang", "test_1");
            value.put(keys.get(0), true);
            value.put(keys.get(1), 1000);
            value.put(keys.get(2), "ja");
            value.put(keys.get(3), "str");
            docMap = new DocMap(value);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/gover/gover_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package gover
    
    import (
    	"reflect"
    	"testing"
    )
    
    func TestCompare(t *testing.T) { test2(t, compareTests, "Compare", Compare) }
    
    var compareTests = []testCase2[string, string, int]{
    	{"", "", 0},
    	{"x", "x", 0},
    	{"", "x", 0},
    	{"1", "1.1", -1},
    	{"1.5", "1.6", -1},
    	{"1.5", "1.10", -1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/cover_test_race_issue56370.txt

    	}
    }
    
    -- filter/filter_test.go --
    
    package filter_test
    
    import (
    	"testing"
    
    	"issue.56370/filter"
    )
    
    func Test1(t *testing.T) {
    	t.Parallel()
    
    	_ = filter.New()
    }
    
    func Test2(t *testing.T) {
    	t.Parallel()
    
    	_ = filter.New()
    }
    
    func Test3(t *testing.T) {
    	t.Parallel()
    
    	_ = filter.New()
    }
    
    func Test4(t *testing.T) {
    	t.Parallel()
    
    	_ = filter.New()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 21 19:41:54 UTC 2022
    - 576 bytes
    - Viewed (0)
  10. hack/lib/golang.sh

        local outfile testpkg
        outfile=$(kube::golang::outfile_for_binary "${test}" "${platform}")
        testpkg=$(dirname "${test}")
    
        mkdir -p "$(dirname "${outfile}")"
        go test -c \
          ${goflags:+"${goflags[@]}"} \
          -gcflags="${gogcflags}" \
          -ldflags="${goldflags}" \
          -tags="${gotags:-}" \
          -o "${outfile}" \
          "${testpkg}"
      done
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
Back to top