Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for lastArgs (0.13 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorDecoratedTest.groovy

            tester.lastArgs.size() == 3
            tester.lastArgs.first() == "1"
            tester.lastArgs[1] == "2"
            tester.lastArgs.last() instanceof Action
    
            when:
            tester.overloaded("1") { assert it == "subject" }
    
            then:
            tester.lastMethod == "overloaded"
            tester.lastArgs.size() == 2
            tester.lastArgs.first() == "1"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-groovy/src/main/java/org/gradle/model/dsl/internal/transform/RuleVisitor.java

                    if (!arguments.getExpressions().isEmpty()) {
                        Expression lastArg = arguments.getExpression(arguments.getExpressions().size() - 1);
                        if (lastArg instanceof ClosureExpression) {
                            // This is a potential nested rule.
                            // Visit method parameters
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testshared/shared_test.go

    func cloneGOROOTDeps(goroot string) error {
    	// Before we clone GOROOT, figure out which packages we need to copy over.
    	listArgs := []string{
    		"list",
    		"-deps",
    		"-f", "{{if and .Standard (not .ForTest)}}{{.ImportPath}}{{end}}",
    	}
    	stdDeps := goCmd(nil, append(listArgs, minpkgs...)...)
    	testdataDeps := goCmd(nil, append(listArgs, "-test", "./...")...)
    
    	pkgs := append(strings.Split(strings.TrimSpace(stdDeps), "\n"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            fir: FirFunctionCall,
            arrayAccessExpression: KtArrayAccessExpression,
            incDecPrecedence: KaCompoundAccess.IncOrDecOperation.Precedence,
        ): CompoundArrayAccessPartiallyAppliedSymbols? {
            val lastArg = fir.arguments.lastOrNull() ?: return null
            val setPartiallyAppliedSymbol = fir.toPartiallyAppliedSymbol(arrayAccessExpression.arrayExpression) ?: return null
            return when (incDecPrecedence) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  5. src/internal/trace/internal/oldtrace/parser.go

    	}
    	switch raw.typ {
    	case EvBatch:
    		p.lastGs[p.lastP] = p.lastG
    		if raw.args[0] != math.MaxUint64 && raw.args[0] > math.MaxInt32 {
    			return fmt.Errorf("processor ID %d is larger than maximum of %d", raw.args[0], uint64(math.MaxInt32))
    		}
    		if raw.args[0] == math.MaxUint64 {
    			p.lastP = -1
    		} else {
    			p.lastP = int32(raw.args[0])
    		}
    		p.lastG = p.lastGs[p.lastP]
    		p.lastTs = Timestamp(raw.args[1])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
Back to top