Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 185 for Prog (0.05 sec)

  1. test/bom.go

    // Test source file beginning with a byte order mark.
    
    package main
    
    import (
    	"fmt"
    	"strings"
    )
    
    func main() {
    	prog = strings.Replace(prog, "BOM", "\uFEFF", -1)
    	fmt.Print(prog)
    }
    
    var prog = `BOM
    package main
    
    func main() {
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 10 20:03:07 UTC 2012
    - 406 bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf_test.go

    		name                 string
    		args                 []string
    		prog                 string
    		wantSecsRO           []string
    		wantSecsROIfPresent  []string
    		mustHaveBuildModePIE bool
    		mustHaveCGO          bool
    		mustInternalLink     bool
    		wantDfBindNow        bool
    		wantDf1Now           bool
    		wantDf1Pie           bool
    	}{
    		{name: "default", prog: prog},
    		{
    			name:                 "pie-linkmode-internal",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 13:44:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. src/regexp/backtrack.go

    // the backtracker using prog.
    func maxBitStateLen(prog *syntax.Prog) int {
    	if !shouldBacktrack(prog) {
    		return 0
    	}
    	return maxBacktrackVector / len(prog.Inst)
    }
    
    // shouldBacktrack reports whether the program is too
    // long for the backtracker to run.
    func shouldBacktrack(prog *syntax.Prog) bool {
    	return len(prog.Inst) <= maxBacktrackProg
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 17:25:39 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  4. src/packaging/rpm/init.d/fess

    fi
    
    exec="$FESS_HOME/bin/fess"
    prog="fess"
    pidfile="$PID_DIR/${prog}.pid"
    
    export FESS_TEMP_PATH
    export FESS_LOG_PATH
    export FESS_CONF_PATH
    export FESS_VAR_PATH
    export FESS_DICTIONARY_PATH
    export FESS_HEAP_SIZE
    export SEARCH_ENGINE_HOME
    export SEARCH_ENGINE_HTTP_URL
    export FESS_JAVA_OPTS
    export JAVA_HOME
    
    lockfile=/var/lock/subsys/$prog
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/plist.go

    // Prog generated.
    func (ctxt *Link) EmitEntryLiveness(s *LSym, p *Prog, newprog ProgAlloc) *Prog {
    	pcdata := ctxt.EmitEntryStackMap(s, p, newprog)
    	pcdata = ctxt.EmitEntryUnsafePoint(s, pcdata, newprog)
    	return pcdata
    }
    
    // Similar to EmitEntryLiveness, but just emit stack map.
    func (ctxt *Link) EmitEntryStackMap(s *LSym, p *Prog, newprog ProgAlloc) *Prog {
    	pcdata := Appendp(p, newprog)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. test/crlf.go

    // Test source files and strings containing \r and \r\n.
    
    package main
    
    import (
    	"fmt"
    	"strings"
    )
    
    func main() {
    	prog = strings.Replace(prog, "BQ", "`", -1)
    	prog = strings.Replace(prog, "CR", "\r", -1)
    	fmt.Print(prog)
    }
    
    var prog = `
    package main
    CR
    
    import "fmt"
    
    var CR s = "hello\n" + CR
    	" world"CR
    
    var t = BQhelloCR
     worldBQ
    
    var u = BQhCReCRlCRlCRoCR
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 20 15:45:43 UTC 2012
    - 782 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/exec_windows.go

    	//
    	// Unfortunately, it provides no means of escaping interior quotation marks
    	// within that program name, and we have no way to report them here.
    	prog := args[0]
    	mustQuote := len(prog) == 0
    	for i := 0; i < len(prog); i++ {
    		c := prog[i]
    		if c <= ' ' || (c == '"' && i == 0) {
    			// Force quotes for not only the ASCII space and tab as described in the
    			// MSDN article, but also ASCII control characters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/gcflags_patterns.txt

    stderr 'link.* -X=x.y=z'
    
    # -ldflags applies to link of command
    go build -a -n -ldflags=-X=math.pi=3 my/cmd/prog
    stderr 'link.* -X=math.pi=3'
    
    # -ldflags applies to link of command even with strange directory name
    go build -a -n -ldflags=-X=math.pi=3 my/cmd/prog/
    stderr 'link.* -X=math.pi=3'
    
    # -ldflags applies to current directory
    cd my/cmd/prog
    go build -a -n -ldflags=-X=math.pi=3
    stderr 'link.* -X=math.pi=3'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 21 14:58:44 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/util.go

    		sc += ".U"
    	}
    	return sc
    }
    
    func (p *Prog) String() string {
    	if p == nil {
    		return "<nil Prog>"
    	}
    	if p.Ctxt == nil {
    		return "<Prog without ctxt>"
    	}
    	return fmt.Sprintf("%.5d (%v)\t%s", p.Pc, p.Line(), p.InstructionString())
    }
    
    func (p *Prog) InnermostString(w io.Writer) {
    	if p == nil {
    		io.WriteString(w, "<nil Prog>")
    		return
    	}
    	if p.Ctxt == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/dwarf_test.go

    	t.Parallel()
    
    	mustHaveDWARF(t)
    
    	const prog = `package main
    %s
    func main() {}
    `
    	tests := []struct {
    		name string
    		prog string
    		file string
    		line int64
    	}{
    		{
    			name: "normal",
    			prog: fmt.Sprintf(prog, ""),
    			file: "test.go",
    			line: 3,
    		},
    		{
    			name: "line-directive",
    			prog: fmt.Sprintf(prog, "//line /foobar.go:200"),
    			file: "foobar.go",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
Back to top