Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for oneTask (0.1 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/plugins/NativeComponentModelPluginTest.groovy

            with(oneTask(executableBinary.buildDependencies)) {
                name == "exeExecutable"
                group == LifecycleBasePlugin.BUILD_GROUP
            }
            SharedLibraryBinarySpec sharedLibraryBinary = binaries.libSharedLibrary as SharedLibraryBinarySpec
            with(oneTask(sharedLibraryBinary.buildDependencies)) {
                name == "libSharedLibrary"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:55 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. src/regexp/onepass.go

    var anyRune = []rune{0, unicode.MaxRune}
    
    // makeOnePass creates a onepass Prog, if possible. It is possible if at any alt,
    // the match engine can always tell which branch to take. The routine may modify
    // p if it is turned into a onepass Prog. If it isn't possible for this to be a
    // onepass Prog, the Prog nil is returned. makeOnePass is recursive
    // to the size of the Prog.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. src/regexp/onepass_test.go

    		re, err := Compile(test.re)
    		if err != nil {
    			t.Errorf("Compile(%q): got err: %s", test.re, err)
    			continue
    		}
    		if re.onepass == nil {
    			t.Errorf("Compile(%q): got nil, want one-pass", test.re)
    			continue
    		}
    		if !re.MatchString(test.match) {
    			t.Errorf("onepass %q did not match %q", test.re, test.match)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. src/regexp/exec.go

    	if r != endOfText {
    		r1, width1 = i.step(pos + width)
    	}
    	var flag lazyFlag
    	if pos == 0 {
    		flag = newLazyFlag(-1, r)
    	} else {
    		flag = i.context(pos)
    	}
    	pc := re.onepass.Start
    	inst := &re.onepass.Inst[pc]
    	// If there is a simple literal prefix, skip over it.
    	if pos == 0 && flag.match(syntax.EmptyOp(inst.Arg)) &&
    		len(re.prefix) > 0 && i.canCheckPrefix() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 04 20:10:54 UTC 2022
    - 12.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/switch.go

    	type oneCase struct {
    		pos src.XPos
    		jmp ir.Node // jump to body of selected case
    
    		// The case we're matching. Normally the type we're looking for
    		// is typ.Type(), but when typ is ODYNAMICTYPE the actual type
    		// we're looking for is not a compile-time constant (typ.Type()
    		// will be its shape).
    		typ ir.Node
    	}
    	var cases []oneCase
    	var defaultGoto, nilGoto ir.Node
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  6. src/regexp/exec_test.go

    			})
    		}
    	}
    }
    
    func BenchmarkMatch_onepass_regex(b *testing.B) {
    	isRaceBuilder := strings.HasSuffix(testenv.Builder(), "-race")
    	r := MustCompile(`(?s)\A.*\z`)
    	if r.onepass == nil {
    		b.Fatalf("want onepass regex, but %q is not onepass", r)
    	}
    	for _, size := range benchSizes {
    		if (isRaceBuilder || testing.Short()) && size.n > 1<<10 {
    			continue
    		}
    		t := makeText(size.n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. src/regexp/backtrack.go

    // state multiple times. This limits the search to run in time linear in
    // the length of the test.
    //
    // backtrack is a fast replacement for the NFA code on small
    // regexps when onepass cannot be used.
    
    package regexp
    
    import (
    	"regexp/syntax"
    	"sync"
    )
    
    // A job is an entry on the backtracker's job stack. It holds
    // the instruction pc and the position in the input.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  8. src/regexp/regexp.go

    // except for configuration methods, such as [Regexp.Longest].
    type Regexp struct {
    	expr           string       // as passed to Compile
    	prog           *syntax.Prog // compiled program
    	onepass        *onePassProg // onepass program or nil
    	numSubexp      int
    	maxBitStateLen int
    	subexpNames    []string
    	prefix         string         // required prefix in unanchored matches
    	prefixBytes    []byte         // prefix, as a []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. src/regexp/all_test.go

    	s := "abcdefghijklmnopqrstuvwxyz"
    	b.SetBytes(int64(len(s)))
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		sink = QuoteMeta(s)
    	}
    }
    
    var compileBenchData = []struct{ name, re string }{
    	{"Onepass", `^a.[l-nA-Cg-j]?e$`},
    	{"Medium", `^((a|b|[d-z0-9])*(日){4,5}.)+$`},
    	{"Hard", strings.Repeat(`((abc)*|`, 50) + strings.Repeat(`)`, 50)},
    }
    
    func BenchmarkCompile(b *testing.B) {
    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