Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Jabba (0.03 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/strings/replace_test.go

    		"abraham", "isaac",
    	)
    	testCases = append(testCases,
    		testCase{gen3, "abracadabrakazam abraham", "poofkazam lincoln"},
    		testCase{gen3, "abrasion abracad", "scrape abracad"},
    		testCase{gen3, "abba abram abrasive", "abba abram abrasive"},
    		testCase{gen3, "", ""},
    	)
    
    	// foo{1,2,3,4} have multiple old strings with an overall common prefix
    	// and 1- or 2- byte extensions from the common prefix.
    	foo1 := NewReplacer(
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 22:53:05 UTC 2017
    - 14.1K bytes
    - Viewed (0)
  3. 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