Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 22 of 22 for compileTest (0.12 sec)

  1. src/regexp/syntax/prog_test.go

    // Copyright 2011 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 syntax
    
    import "testing"
    
    var compileTests = []struct {
    	Regexp string
    	Prog   string
    }{
    	{"a", `  0	fail
      1*	rune1 "a" -> 2
      2	match
    `},
    	{"[A-M][n-z]", `  0	fail
      1*	rune "AM" -> 2
      2	rune "nz" -> 3
      3	match
    `},
    	{"", `  0	fail
      1*	nop -> 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 04:39:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. ReadMe.md

    - `install` - build and install all public artifacts into local maven repository
    - `coreLibsTest` - build and run stdlib, reflect and kotlin-test tests
    - `gradlePluginTest` - build and run gradle plugin tests
    - `compilerTest` - build and run all compiler tests
    
    To reproduce TeamCity build use `-Pteamcity=true` flag. Local builds don't run proguard and have jar compression disabled by default.
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top