Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 185 for Prog (0.28 sec)

  1. src/regexp/syntax/prog.go

    package syntax
    
    import (
    	"strconv"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    )
    
    // Compiled program.
    // May not belong in this package, but convenient for now.
    
    // A Prog is a compiled regular expression program.
    type Prog struct {
    	Inst   []Inst
    	Start  int // index of start instruction
    	NumCap int // number of InstCapture insts in re
    }
    
    // An InstOp is an instruction opcode.
    type InstOp uint8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/cache/prog.go

    	}
    	args, err := quoted.Split(progAndArgs)
    	if err != nil {
    		base.Fatalf("GOCACHEPROG args: %v", err)
    	}
    	var prog string
    	if len(args) > 0 {
    		prog = args[0]
    		args = args[1:]
    	}
    
    	ctx, ctxCancel := context.WithCancel(context.Background())
    
    	cmd := exec.CommandContext(ctx, prog, args...)
    	out, err := cmd.StdoutPipe()
    	if err != nil {
    		base.Fatalf("StdoutPipe to GOCACHEPROG: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 19:23:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. test/interface/private.dir/prog.go

    Rémy Oudompheng <******@****.***> 1349901327 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 10 20:35:27 UTC 2012
    - 608 bytes
    - Viewed (0)
  4. test/fixedbugs/bug324.dir/prog.go

    Rémy Oudompheng <******@****.***> 1349627825 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 07 16:37:05 UTC 2012
    - 1.2K bytes
    - Viewed (0)
  5. test/fixedbugs/issue4590.dir/prog.go

    Emmanuel Odeke <******@****.***> 1460323946 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 438 bytes
    - Viewed (0)
  6. test/method4.dir/prog.go

    Rémy Oudompheng <******@****.***> 1389097608 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 07 12:26:48 UTC 2014
    - 1.7K bytes
    - Viewed (0)
  7. test/fixedbugs/bug414.dir/prog.go

    Emmanuel Odeke <******@****.***> 1460323946 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 329 bytes
    - Viewed (0)
  8. test/fixedbugs/bug415.dir/prog.go

    Emmanuel Odeke <******@****.***> 1460323946 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 212 bytes
    - Viewed (0)
  9. test/fixedbugs/issue5291.dir/prog.go

    Jan Ziak <******@****.***> 1366908432 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 16:47:12 UTC 2013
    - 307 bytes
    - Viewed (0)
  10. test/fixedbugs/bug367.dir/prog.go

    Rémy Oudompheng <******@****.***> 1349627825 +0200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 07 16:37:05 UTC 2012
    - 424 bytes
    - Viewed (0)
Back to top