Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 91 for tst2 (0.43 sec)

  1. test/codegen/comparisons.go

    	// arm64:`ADD`,-`CMNW`
    	// arm:`ADD`,-`CMN`
    	c5 := b+d == 0
    	// not optimized to single TSTW/TST due to further use of a&d
    	// arm64:`AND`,-`TSTW`
    	// arm:`AND`,-`TST`
    	// 386:`ANDL`
    	c6 := a&d >= 0
    	// arm64:`TST\sR[0-9]+<<3,\sR[0-9]+`
    	c7 := e&(f<<3) < 0
    	// arm64:`CMN\sR[0-9]+<<3,\sR[0-9]+`
    	c8 := e+(f<<3) < 0
    	// arm64:`TST\sR[0-9],\sR[0-9]+`
    	c9 := e&(-19) < 0
    	if c0 {
    		return 1
    	} else if c1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 19 16:31:02 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/asm_test.go

    	for _, tst := range tsts {
    		var expect []int
    		switch tst.output.(type) {
    		case cmplx:
    			v := tst.output.(cmplx)
    			expect = []int{v.pic, v.pic_dyn, v.dyn, v.nonpic}
    		case int:
    			expect = []int{tst.output.(int), tst.output.(int), tst.output.(int), tst.output.(int)}
    		}
    		for i := range ctxts {
    			if output := ctxts[i].aclass(&tst.arg); output != expect[i] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/cri_stats_provider_windows_test.go

    								BytesSent:     20,
    								EndpointId:    "test2",
    								InstanceId:    "test2",
    							},
    						},
    					},
    					{
    						container: hcsshim.ContainerProperties{
    							ID: "c3",
    						}, hcsStats: []hcsshim.NetworkStats{
    							{
    								BytesReceived: 3,
    								BytesSent:     30,
    								EndpointId:    "test2",
    								InstanceId:    "test3",
    							},
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 17 00:02:10 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/DefaultSourceIncludesResolverTest.groovy

            includePaths << includeDir
    
            macros << macro("TEST", '"test.h"')
            macroFunctions << macroFunction("TEST1", "TEST")
            macros << macro("TEST2", "TEST1()")
            macros << macro("TEST3", "TEST2")
            macros << unresolvableMacro("IGNORE")
    
            expect:
            def result = resolve(include('TEST3'))
            result.complete
            result.files.file as List == [header1]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIsolationIntegrationTest.groovy

                output.count("Transforming test2-2.3.jar to test2-2.3.jar.txt") == 1
            } else {
                // Counter is isolated at execution time, so transforms will see the increment in each tasks' doLast { }
                output.count("Transforming") == 6
                output.count("Transforming test-1.3.jar to test-1.3.jar.txt") == 3
                output.count("Transforming test2-2.3.jar to test2-2.3.jar.txt") == 3
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/arm64enc.s

    	SYSL $285440, R12                          // 0c5b2cd5
    	TLBI VAE1IS, R1                            // 218308d5
    	TSTW $0x80000007, R9                       // TSTW $2147483655, R9          // 3f0d0172
    	TST $0xfffffff0, LR                        // TST $4294967280, R30          // df6f7cf2
    	TSTW R10@>21, R2                           // 5f54ca6a
    	TST R17<<11, R24                           // 1f2f11ea
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 01:11:41 UTC 2023
    - 43.9K bytes
    - Viewed (0)
  7. src/cmd/cgo/ast.go

    	// so we use ast1 to look for the doc comments on import "C"
    	// and on exported functions, and we use ast2 for translating
    	// and reprinting.
    	// In cgo mode, we ignore ast2 and just apply edits directly
    	// the text behind ast1. In godefs mode we modify and print ast2.
    	ast1 := parse(abspath, src, parser.SkipObjectResolution|parser.ParseComments)
    	ast2 := parse(abspath, src, parser.SkipObjectResolution)
    
    	f.Package = ast1.Name.Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:27 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/RegexBackedCSourceParserTest.groovy

            then:
            found == ['test1', 'test2', 'test3', 'system1', 'system2', 'DEFINED']
    
            where:
            directive << ["include", "import"]
        }
    
        def "finds #directive with no whitespace"() {
            when:
            sourceFile << """
    #include"test1"
    #include<test2>
    """
            useDirective(directive)
    
            then:
            found == ['test1', 'test2']
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformParallelIntegrationTest.groovy

                    }
                }
            """
    
            server.expectConcurrent("test-1.3.jar", "test2-2.3.jar", "test3-3.3.jar")
    
            when:
            succeeds ":resolve"
    
            then:
            outputContains("Transforming test-1.3.jar to test-1.3.jar.txt")
            outputContains("Transforming test2-2.3.jar to test2-2.3.jar.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:31 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. tests/test_annotated.py

        assert response.status_code == 200
        assert response.json() == {"foo": "baz"}
    
        response = client.get("/test2")
        assert response.status_code == 200
        assert response.json() == {"foo": "bar"}
    
        response = client.get("/test2", params={"var": "baz"})
        assert response.status_code == 200
        assert response.json() == {"foo": "baz"}
    
    
    def test_nested_router():
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top