Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Jabba (0.19 sec)

  1. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    JVM auto-detection knows how to work with:
    
    * Operation-system specific locations: Linux, macOS, Windows
    * Package Managers: https://asdf-vm.com/#/[Asdf-vm], https://github.com/shyiko/jabba[Jabba], https://sdkman.io/[SDKMAN!]
    * https://maven.apache.org/guides/mini/guide-using-toolchains.html[Maven Toolchain] specifications
    * https://www.jetbrains.com/help/idea/sdk.html#jdk-from-ide[IntelliJ IDEA] installations
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  2. src/regexp/all_test.go

    	indices []subexpIndex
    }
    
    var emptySubexpIndices = []subexpIndex{{"", -1}, {"missing", -1}}
    
    var subexpCases = []subexpCase{
    	{``, 0, nil, emptySubexpIndices},
    	{`.*`, 0, nil, emptySubexpIndices},
    	{`abba`, 0, nil, emptySubexpIndices},
    	{`ab(b)a`, 1, []string{"", ""}, emptySubexpIndices},
    	{`ab(.*)a`, 1, []string{"", ""}, emptySubexpIndices},
    	{`(.*)ab(.*)a`, 2, []string{"", "", ""}, emptySubexpIndices},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top