Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 97 for tstf (0.04 sec)

  1. src/cmd/go/testdata/script/cover_statements.txt

    }
    -- pkg2/a_test.go --
    package pkg2
    -- pkg3/a.go --
    package pkg3
    
    import "fmt"
    
    func F() {
    	fmt.Println("pkg3")
    }
    -- pkg3/a_test.go --
    package pkg3
    
    import "testing"
    
    func TestF(t *testing.T) {
    	F()
    }
    -- pkg4/a.go --
    package pkg4
    
    type T struct {
    	X bool
    }
    -- pkg4/a_test.go --
    package pkg4
    
    import (
    	"testing"
    )
    
    func TestT(t *testing.T) {
    	_ = T{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:36:30 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. src/go/doc/testdata/testing.go

    	stopAlarm()
    	RunBenchmarks(matchString, benchmarks)
    	after()
    }
    
    func (t *T) report() {
    	tstr := fmt.Sprintf("(%.2f seconds)", t.duration.Seconds())
    	format := "--- %s: %s %s\n%s"
    	if t.failed {
    		fmt.Printf(format, "FAIL", t.name, tstr, t.output)
    	} else if *chatty {
    		fmt.Printf(format, "PASS", t.name, tstr, t.output)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/ARMOps.go

    		{name: "CMNconst", argLength: 1, reg: gp1flags, asm: "CMN", aux: "Int32", typ: "Flags"}, // arg0 compare to -auxInt
    		{name: "TST", argLength: 2, reg: gp2flags, asm: "TST", typ: "Flags", commutative: true}, // arg0 & arg1 compare to 0
    		{name: "TSTconst", argLength: 1, reg: gp1flags, asm: "TST", aux: "Int32", typ: "Flags"}, // arg0 & auxInt compare to 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 41K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

                } else if (lowerPath.endsWith(".svg")) {
                    response.setContentType("image/svg+xml");
                } else if (lowerPath.endsWith(".ttf")) {
                    response.setContentType("font/ttf");
                } else if (lowerPath.endsWith(".txt")) {
                    response.setContentType("text/plain");
                } else if (lowerPath.endsWith(".woff")) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:28:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/arm.s

    // TST
    	TST	$255, R7             // ff0017e3
    	TST	$4278190080, R9      // ff0419e3
    	TST	R9<<30, R7           // 090f17e1
    	TST	R9>>30, R7           // 290f17e1
    	TST	R9->30, R7           // 490f17e1
    	TST	R9@>30, R7           // 690f17e1
    	TST	R9<<R8, R7           // 190817e1
    	TST	R9>>R8, R7           // 390817e1
    	TST	R9->R8, R7           // 590817e1
    	TST	R9@>R8, R7           // 790817e1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 69K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteARM64latelower.go

    func rewriteValueARM64latelower_OpARM64TSTWconst(v *Value) bool {
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (TSTWconst [c] x)
    	// cond: !isARM64bitcon(uint64(c)|uint64(c)<<32)
    	// result: (TSTW x (MOVDconst [int64(c)]))
    	for {
    		c := auxIntToInt32(v.AuxInt)
    		x := v_0
    		if !(!isARM64bitcon(uint64(c) | uint64(c)<<32)) {
    			break
    		}
    		v.reset(OpARM64TSTW)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. test/codegen/switch.go

    	// amd64: `CMPL\s\(.*\), \$1735815982$`
    	// arm64: `MOVD\s\$1735815982`, `CMPW\sR.*, R.*$`
    	case ".svg":
    		return "C"
    	// amd64: `CMPL\s\(.*\), \$1718907950$`
    	// arm64: `MOVD\s\$1718907950`, `CMPW\sR.*, R.*$`
    	case ".ttf":
    		return "D"
    	default:
    		return ""
    	}
    }
    
    // use jump tables for type switches to concrete types.
    func typeSwitch(x any) int {
    	// amd64:`JMP\s\(.*\)\(.*\)$`
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 18:39:50 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/components/symbolDeclarationRenderer/Fe10IdeNormalAnalysisSourceModuleRendererTestGenerated.java

      public void testExpectActual() {
        runTest("analysis/analysis-api/testData/components/symbolDeclarationRenderer/renderDeclaration/expectActual.kt");
      }
    
      @Test
      @TestMetadata("F.kt")
      public void testF() {
        runTest("analysis/analysis-api/testData/components/symbolDeclarationRenderer/renderDeclaration/F.kt");
      }
    
      @Test
      @TestMetadata("functionTypes.kt")
      public void testFunctionTypes() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 07:21:33 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/symbolDeclarationRenderer/FirIdeNormalAnalysisSourceModuleRendererTestGenerated.java

      public void testExpectActual() {
        runTest("analysis/analysis-api/testData/components/symbolDeclarationRenderer/renderDeclaration/expectActual.kt");
      }
    
      @Test
      @TestMetadata("F.kt")
      public void testF() {
        runTest("analysis/analysis-api/testData/components/symbolDeclarationRenderer/renderDeclaration/F.kt");
      }
    
      @Test
      @TestMetadata("functionTypes.kt")
      public void testFunctionTypes() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 07:21:33 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/components/symbolDeclarationRenderer/FirStandaloneNormalAnalysisSourceModuleRendererTestGenerated.java

      public void testExpectActual() {
        runTest("analysis/analysis-api/testData/components/symbolDeclarationRenderer/renderDeclaration/expectActual.kt");
      }
    
      @Test
      @TestMetadata("F.kt")
      public void testF() {
        runTest("analysis/analysis-api/testData/components/symbolDeclarationRenderer/renderDeclaration/F.kt");
      }
    
      @Test
      @TestMetadata("functionTypes.kt")
      public void testFunctionTypes() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 07:21:33 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top