Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 117 for forall (0.18 sec)

  1. subprojects/core/src/main/java/org/gradle/configuration/internal/DefaultListenerBuildOperationDecorator.java

                this.application = application;
                this.delegate = delegate;
                this.registrationPoint = registrationPoint;
            }
    
            @SuppressWarnings("unused")
            public void doCall(final Object... args) {
                buildOperationRunner.run(new Operation(application.getId(), registrationPoint) {
                    @Override
                    public void run(final BuildOperationContext context) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. src/testing/sub_test.go

    			startParallel: make(chan bool),
    			maxParallel:   tc.max,
    		}
    		for j, call := range tc.run {
    			doCall := func(f func()) chan bool {
    				done := make(chan bool)
    				go func() {
    					f()
    					done <- true
    				}()
    				return done
    			}
    			started := false
    			switch call.typ {
    			case add1:
    				signal := doCall(ctx.waitParallel)
    				select {
    				case <-signal:
    					started = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 21:27:08 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/AstUtils.java

                throw new IllegalArgumentException("expecting generated closure class node");
            }
    
            List<MethodNode> doCallMethods = classNode.getDeclaredMethods("doCall");
            return doCallMethods.get(0);
        }
    
        /**
         * Returns true if the given statement may have some effect as part of a script body.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r48/PhasedBuildActionCrossVersionSpec.groovy

                    .forTasks("bye")
                    .setStandardOutput(stdOut)
                    .run()
            }
    
            then:
            Pattern regex = Pattern.compile(".*hello.*bye.*buildFinishedAction.*", Pattern.DOTALL)
            assert stdOut.toString().matches(regex)
            buildFinishedHandler.getResult() == "build"
            stdOut.toString().contains("hello")
            stdOut.toString().contains("bye")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. pilot/pkg/leaderelection/leaderelection.go

    	// doing the ingress syncing.
    	IngressController = "istio-leader"
    	// GatewayStatusController controls the status of gateway.networking.k8s.io objects. For the v1alpha1
    	// this was formally "istio-gateway-leader"; because they are a different API group we need a different
    	// election to ensure we do not only handle one or the other.
    	GatewayStatusController = "istio-gateway-status-leader"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/typecheck/func.go

    	}
    
    	if name := n.Nname; name.Typecheck() == 0 {
    		base.AssertfAt(name.Type() != nil, n.Pos(), "missing type: %v", name)
    		name.SetTypecheck(1)
    	}
    }
    
    // tcCall typechecks an OCALL node.
    func tcCall(n *ir.CallExpr, top int) ir.Node {
    	Stmts(n.Init()) // imported rewritten f(g()) calls (#30907)
    	n.Fun = typecheck(n.Fun, ctxExpr|ctxType|ctxCallee)
    
    	l := n.Fun
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. 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)
  8. docs/pt/docs/async.md

    Por isso que faz muito mais sentido utilizar código assíncrono para APIs web.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/scalar.go

    	s fiatScalarMontgomeryDomainFieldElement
    }
    
    // The field implementation in scalar_fiat.go is generated by the fiat-crypto
    // project (https://github.com/mit-plv/fiat-crypto) at version v0.0.9 (23d2dbc)
    // from a formally verified model.
    //
    // fiat-crypto code comes under the following license.
    //
    //     Copyright (c) 2015-2020 The fiat-crypto Authors. All rights reserved.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/dwarf_test.go

    			if absChild.Tag == dwarf.TagFormalParameter {
    				formalCount += 1
    				continue
    			}
    			t.Fatalf("abstract function child DIE: expected formal, got %v", absChild.Tag)
    		}
    		if formalCount != 2 {
    			t.Fatalf("abstract function DIE: expected 2 formals, got %d", formalCount)
    		}
    
    		omap := make(map[dwarf.Offset]bool)
    
    		// Walk the child variables of the inlined routine. Each
    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