Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 68 for DoCall (0.22 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/DefaultBuildCancellationToken.java

        public void cancel() {
            List<Runnable> toCall = new ArrayList<Runnable>();
            synchronized (lock) {
                if (cancelled) {
                    return;
                }
                cancelled = true;
                toCall.addAll(callbacks);
                callbacks.clear();
            }
    
            List<Throwable> failures = new ArrayList<Throwable>();
            for (Runnable callback : toCall) {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  2. test/fixedbugs/issue5162.go

    			src = strings.Replace(src, "TWOS", "2"+strings.Repeat(", 2", i-1), -1)
    			fmt.Print(src)
    			tocall = append(tocall, fmt.Sprintf("CheckEq%d_%s", i, strings.Title(typ)))
    		}
    	}
    	fmt.Println("func main() {")
    	for _, fun := range tocall {
    		fmt.Printf("\t%s()\n", fun)
    		fmt.Printf("\t%sExtraVar()\n", fun)
    	}
    	fmt.Println("}")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 19:01:50 UTC 2013
    - 2.3K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/stmt.go

    		return n
    
    	case ir.OAS,
    		ir.OASOP,
    		ir.OAS2,
    		ir.OAS2DOTTYPE,
    		ir.OAS2RECV,
    		ir.OAS2FUNC,
    		ir.OAS2MAPR,
    		ir.OCLEAR,
    		ir.OCLOSE,
    		ir.OCOPY,
    		ir.OCALLINTER,
    		ir.OCALL,
    		ir.OCALLFUNC,
    		ir.ODELETE,
    		ir.OSEND,
    		ir.OPRINT,
    		ir.OPRINTLN,
    		ir.OPANIC,
    		ir.ORECOVERFP,
    		ir.OGETG:
    		if n.Typecheck() == 0 {
    			base.Fatalf("missing typecheck: %+v", n)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 15:42:30 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ir/fmt.go

    	OADDSTR:           "+",
    	OANDAND:           "&&",
    	OANDNOT:           "&^",
    	OAND:              "&",
    	OAPPEND:           "append",
    	OAS:               "=",
    	OAS2:              "=",
    	OBREAK:            "break",
    	OCALL:             "function call", // not actual syntax
    	OCAP:              "cap",
    	OCASE:             "case",
    	OCLEAR:            "clear",
    	OCLOSE:            "close",
    	OCOMPLEX:          "complex",
    	OBITNOT:           "^",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/gen_quantized_function_library.py

      """Substitutes the for loop templates in the given module."""
      compiled_regex = re.compile(
          r'^\s*for\s(.*?)\sin\s(\[.*?\])\s\{(.*?)\}\s//\send\sfor\n',
          re.MULTILINE | re.DOTALL)
      while True:
        func_match = re.search(compiled_regex, module)
        if func_match is None:
          break
    
        try:
          arg_name = func_match.group(1)
          arg_values = ast.literal_eval(func_match.group(2))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 20 01:38:06 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  6. pkg/test/framework/components/echo/config/builder.go

    func (b *Builder) BuildFromAndTo(fromAll echo.Callers, toAll echo.Services) *Builder {
    	b.t.Helper()
    	out := b.Copy()
    
    	systemNS := istio.ClaimSystemNamespaceOrFail(out.t, out.t)
    
    	for _, from := range fromAll {
    		for _, to := range toAll {
    			for _, s := range out.needFromAndTo {
    				out.addYAML(withParams(s, param.Params{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 13 23:42:29 UTC 2022
    - 7.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/noder/stmt.go

    )
    
    // TODO(mdempsky): Investigate replacing with switch statements or dense arrays.
    
    var branchOps = [...]ir.Op{
    	syntax.Break:       ir.OBREAK,
    	syntax.Continue:    ir.OCONTINUE,
    	syntax.Fallthrough: ir.OFALL,
    	syntax.Goto:        ir.OGOTO,
    }
    
    var callOps = [...]ir.Op{
    	syntax.Defer: ir.ODEFER,
    	syntax.Go:    ir.OGO,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 21 02:39:32 UTC 2023
    - 564 bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/DaemonContextParser.java

                    Pattern.MULTILINE + Pattern.DOTALL);
            Matcher matcher = pattern.matcher(source);
    
            if (matcher.matches()) {
                String uid = matcher.group(1) == null ? null : matcher.group(1).substring("uid=".length());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 09:22:54 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. test/func5.go

    // license that can be found in the LICENSE file.
    
    // Test functions and goroutines.
    
    package main
    
    func caller(f func(int, int) int, a, b int, c chan int) {
    	c <- f(a, b)
    }
    
    func gocall(f func(int, int) int, a, b int) int {
    	c := make(chan int)
    	go caller(f, a, b, c)
    	return <-c
    }
    
    func call(f func(int, int) int, a, b int) int {
    	return f(a, b)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 03:28:53 UTC 2012
    - 1.5K bytes
    - Viewed (0)
  10. test/typeparam/issue48042.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    	"reflect"
    )
    
    type G[T any] interface {
    	g() func()(*T)
    }
    type Foo[T any] struct {
    
    }
    // OCALL
    func (l *Foo[T]) f1() (*T) {
    	return g[T]()()
    }
    // OCALLFUNC
    func (l *Foo[T]) f2() (*T) {
    	var f = g[T]
    	return f()()
    }
    // OCALLMETH
    func (l *Foo[T]) f3() (*T) {
    	return l.g()()
    }
    // OCALLINTER
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.3K bytes
    - Viewed (0)
Back to top