Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for antcall (0.2 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    The `ant.importBuild()` method also handles `<ant>` and `<antcall>` tasks transparently, which allows for a phased migration.
    
    The following steps highlight a suggested method for migrating a multi-project build:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/calls/KtCall.kt

    @Deprecated(
        "The API has been moved into `org.jetbrains.kotlin.analysis.api.resolution` package",
        level = DeprecationLevel.HIDDEN,
    )
    public typealias KaCall = KaCall
    public typealias KtCall = KaCall
    
    @Deprecated(
        "The API has been moved into `org.jetbrains.kotlin.analysis.api.resolution` package",
        level = DeprecationLevel.HIDDEN,
    )
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/internal-instrumentation-processor/src/test/groovy/org/gradle/internal/instrumentation/extensions/property/PropertyUpgradeCodeGenTest.groovy

                        return $getCall;
                    }
    
                    ${hasSuppressWarnings ? '@SuppressWarnings({"unchecked", "rawtypes"})' : ''}
                    public static void access_set_setProperty(Task self, $originalType arg0) {
                        ${getDefaultDeprecation("Task", "property")}
                        self.getProperty()$setCall;
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KaFe10Resolver.kt

            psi: KtElement,
            ktCall: KaCall,
            resolvedCalls: List<ResolvedCall<*>>,
            diagnostics: Diagnostics = context.diagnostics,
        ): KaCallInfo {
            val failedResolveCall = resolvedCalls.firstOrNull { !it.status.isSuccess } ?: return KaSuccessCallInfo(ktCall)
    
            val diagnostic = getDiagnosticToReport(context, psi, ktCall, diagnostics)?.let { KaFe10Diagnostic(it, token) }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/op.go

    // NArgs returns the number of arguments (including receiver, if there is one).
    func (a *AuxCall) NArgs() int64 {
    	return int64(len(a.abiInfo.InParams()))
    }
    
    // String returns "AuxCall{<fn>}"
    func (a *AuxCall) String() string {
    	var fn string
    	if a.Fn == nil {
    		fn = "AuxCall{nil" // could be interface/closure etc.
    	} else {
    		fn = fmt.Sprintf("AuxCall{%v", a.Fn)
    	}
    	// TODO how much of the ABI should be printed?
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/wasm/ssa.go

    			setReg(s, wasm.REG_CTXT)
    		}
    		if call, ok := v.Aux.(*ssa.AuxCall); ok && call.Fn != nil {
    			sym := call.Fn
    			p := s.Prog(obj.ACALL)
    			p.To = obj.Addr{Type: obj.TYPE_MEM, Name: obj.NAME_EXTERN, Sym: sym}
    			p.Pos = v.Pos
    			if v.Op == ssa.OpWasmLoweredTailCall {
    				p.As = obj.ARET
    			}
    		} else {
    			getValue64(s, v.Args[0])
    			p := s.Prog(obj.ACALL)
    			p.To = obj.Addr{Type: obj.TYPE_NONE}
    			p.Pos = v.Pos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  7. src/runtime/syscall_windows.go

    // frame. This does not specify how to translate back because
    // the result is always a uintptr. If the C ABI is fastcall,
    // this assumes the four fastcall registers were first spilled
    // to the shadow space.
    type abiDesc struct {
    	parts []abiPart
    
    	srcStackSize uintptr // stdcall/fastcall stack space tracking
    	dstStackSize uintptr // Go stack space used
    	dstSpill     uintptr // Extra stack space for argument spill slots
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/mlir_graph_optimization_pass_test.cc

          auto optimization_pass =
              std::make_unique<NiceMock<MockMlirOptimizationPass>>();
    
          ON_CALL(*optimization_pass, GetPassState(_, _, _, _))
              .WillByDefault(Return(pass_state));
          ON_CALL(*optimization_pass, Run(_, _, _, _, _))
              .WillByDefault(Return(pass_run_result));
          MlirOptimizationPassRegistry::Global().Add(pass_priority++,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 08:25:30 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/riscv/cpu.go

    	// 3.1.9: Instructions to Access CSRs
    	ACSRRW
    	ACSRRS
    	ACSRRC
    	ACSRRWI
    	ACSRRSI
    	ACSRRCI
    
    	// 3.2.1: Environment Call and Breakpoint
    	AECALL
    	ASCALL
    	AEBREAK
    	ASBREAK
    
    	// 3.2.2: Trap-Return Instructions
    	AMRET
    	ASRET
    	ADRET
    
    	// 3.2.3: Wait for Interrupt
    	AWFI
    
    	// 4.2.1: Supervisor Memory-Management Fence Instruction
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/expand_calls.go

    					}
    					x.wideSelects[a] = v
    				}
    
    			case OpSelectN:
    				if v.Type == types.TypeMem {
    					// rewrite the mem selector in place
    					call := v.Args[0]
    					aux := call.Aux.(*AuxCall)
    					mem := x.memForCall[call.ID]
    					if mem == nil {
    						v.AuxInt = int64(aux.abiInfo.OutRegistersUsed())
    						x.memForCall[call.ID] = v
    					} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
Back to top