Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for run11 (0.03 sec)

  1. src/regexp/syntax/prog_test.go

      2	alt -> 1, 3
      3	match
    `},
    	{"a+?", `  0	fail
      1*	rune1 "a" -> 2
      2	alt -> 3, 1
      3	match
    `},
    	{"a*", `  0	fail
      1	rune1 "a" -> 2
      2*	alt -> 1, 3
      3	match
    `},
    	{"a*?", `  0	fail
      1	rune1 "a" -> 2
      2*	alt -> 3, 1
      3	match
    `},
    	{"a+b+", `  0	fail
      1*	rune1 "a" -> 2
      2	alt -> 1, 3
      3	rune1 "b" -> 4
      4	alt -> 3, 5
      5	match
    `},
    	{"(a+)(b+)", `  0	fail
      1*	cap 2 -> 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. subprojects/core/src/integTest/groovy/org/gradle/internal/operations/notify/BuildOperationNotificationContinuousBuildIntegrationTest.groovy

        @ToBeFixedForConfigurationCache(because = "run1.id == run2.id")
        def "obtains notifications about init scripts"() {
            when:
            settingsFile << notifications.registerListener()
            buildScript """
                apply plugin: "java"
            """
            file("src/main/java/Thing.java") << "class Thing {}"
    
            then:
            succeeds("build")
            def run1 = notifications.op(RunBuildBuildOperationType.Details)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 11 09:57:23 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  3. src/regexp/syntax/prog.go

    			bw(b, "rune <nil>")
    		}
    		bw(b, "rune ", strconv.QuoteToASCII(string(i.Rune)))
    		if Flags(i.Arg)&FoldCase != 0 {
    			bw(b, "/i")
    		}
    		bw(b, " -> ", u32(i.Out))
    	case InstRune1:
    		bw(b, "rune1 ", strconv.QuoteToASCII(string(i.Rune)), " -> ", u32(i.Out))
    	case InstRuneAny:
    		bw(b, "any -> ", u32(i.Out))
    	case InstRuneAnyNotNL:
    		bw(b, "anynotnl -> ", u32(i.Out))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top