Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 136 for progx (0.04 sec)

  1. subprojects/core/src/test/groovy/org/gradle/execution/selection/DefaultBuildTaskSelectorTest.groovy

            ":unknown:task" | "Cannot locate tasks that match ':unknown:task' as project 'unknown' not found in <root project>."
            "progx:task"    | "Cannot locate tasks that match 'progx:task' as project 'progx' not found in <default project>. Some candidates are: 'proj'."
        }
    
        def "fails on ambiguous project"() {
            withIncludedBuilds(includedBuild("proj1"))
            addProject(root, "proj2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/covdata/testdata/prog2.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"os"
    	"prog/dep"
    )
    
    //go:noinline
    func fifth() {
    	println("hubba")
    }
    
    //go:noinline
    func sixth() {
    	println("wha?")
    }
    
    func main() {
    	println(dep.Dep1())
    	if len(os.Args) > 1 {
    		fifth()
    	} else {
    		sixth()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:47:16 UTC 2022
    - 396 bytes
    - Viewed (0)
  4. src/cmd/covdata/testdata/prog1.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"os"
    	"prog/dep"
    )
    
    //go:noinline
    func first() {
    	println("whee")
    }
    
    //go:noinline
    func second() {
    	println("oy")
    }
    
    //go:noinline
    func third(x int) int {
    	if x != 0 {
    		return 42
    	}
    	println("blarg")
    	return 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:47:16 UTC 2022
    - 616 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/cmd/internal/obj/plist.go

    import (
    	"cmd/internal/objabi"
    	"cmd/internal/src"
    	"fmt"
    	"internal/abi"
    	"strings"
    )
    
    type Plist struct {
    	Firstpc *Prog
    	Curfn   Func
    }
    
    // ProgAlloc is a function that allocates Progs.
    // It is used to provide access to cached/bulk-allocated Progs to the assemblers.
    type ProgAlloc func() *Prog
    
    func Flushplist(ctxt *Link, plist *Plist, newprog ProgAlloc) {
    	if ctxt.Pkgpath == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. src/cmd/covdata/tool_test.go

    		}
    	}
    
    	// Run instrumented program to generate some coverage data output files,
    	// as follows:
    	//
    	//   <tmp>/covdata0   -- prog1.go compiled -cover
    	//   <tmp>/covdata1   -- prog1.go compiled -cover
    	//   <tmp>/covdata2   -- prog1.go compiled -covermode=atomic
    	//   <tmp>/covdata3   -- prog1.go compiled -covermode=atomic
    	//
    	for m := 0; m < 2; m++ {
    		for k := 0; k < 2; k++ {
    			args := []string{}
    			if k != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. src/cmd/internal/objfile/elf.go

    			break
    		}
    	}
    	if addr == 0 || eaddr < addr {
    		return nil
    	}
    	size := eaddr - addr
    	data := make([]byte, size)
    	for _, prog := range f.elf.Progs {
    		if prog.Vaddr <= addr && addr+size-1 <= prog.Vaddr+prog.Filesz-1 {
    			if _, err := prog.ReadAt(data, int64(addr-prog.Vaddr)); err != nil {
    				return nil
    			}
    			return data
    		}
    	}
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 20:44:50 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/wasm/ssa.go

    			s.Prog(wasm.AIf)
    			s.Br(obj.AJMP, b.Succs[0].Block())
    			s.Prog(wasm.AEnd)
    			s.Br(obj.AJMP, b.Succs[1].Block())
    		}
    
    	case ssa.BlockRet:
    		s.Prog(obj.ARET)
    
    	case ssa.BlockExit, ssa.BlockRetJmp:
    
    	case ssa.BlockDefer:
    		p := s.Prog(wasm.AGet)
    		p.From = obj.Addr{Type: obj.TYPE_REG, Reg: wasm.REG_RET0}
    		s.Prog(wasm.AI64Eqz)
    		s.Prog(wasm.AI32Eqz)
    		s.Prog(wasm.AIf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
Back to top