Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 236 for tcCall (0.07 sec)

  1. src/reflect/abi.go

    	})
    	a.stackBytes += size
    }
    
    // abiDesc describes the ABI for a function or method.
    type abiDesc struct {
    	// call and ret represent the translation steps for
    	// the call and return paths of a Go function.
    	call, ret abiSeq
    
    	// These fields describe the stack space allocated
    	// for the call. stackCallArgsSize is the amount of space
    	// reserved for arguments but not return values. retOffset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.td

        "mlir::stablehlo::StablehloDialect",
        "mlir::quantfork::QuantizationForkDialect",
      ];
    }
    
    def XlaCallModuleToCallPass : Pass<"stablehlo-xla-call-module-to-call", "ModuleOp"> {
      let summary = "Convert XlaCallModuleOp to func.call op";
      let dependentDialects = [
        "TF::TensorFlowDialect",
      ];
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/runtime/stkframe.go

    	fn funcInfo
    
    	// pc is the program counter within fn.
    	//
    	// The meaning of this is subtle:
    	//
    	// - Typically, this frame performed a regular function call
    	//   and this is the return PC (just after the CALL
    	//   instruction). In this case, pc-1 reflects the CALL
    	//   instruction itself and is the correct source of symbolic
    	//   information.
    	//
    	// - If this frame "called" sigpanic, then pc is the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. src/go/types/builtins_test.go

    func TestBuiltinSignatures(t *testing.T) {
    	DefPredeclaredTestFuncs()
    
    	seen := map[string]bool{"trace": true} // no test for trace built-in; add it manually
    	for _, call := range builtinCalls {
    		testBuiltinSignature(t, call.name, call.src, call.sig)
    		seen[call.name] = true
    	}
    
    	// make sure we didn't miss one
    	for _, name := range Universe.Names() {
    		if _, ok := Universe.Lookup(name).(*Builtin); ok && !seen[name] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/FunctionCallResolver.kt

                        error("expected a configuring lambda in the call of ${function.schemaFunction}, but it was not provided")
                }
            } else if (lambda != null) {
                error("a lambda is not expected in the call of ${function.schemaFunction}, but it was provided")
            }
        }
    
        private
        fun AnalysisContext.doRecordSemanticsSideEffects(
            call: FunctionCall,
            semantics: FunctionSemantics,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. cmd/object-api-interface.go

    	Speedtest bool // object call specifically meant for SpeedTest code, set to 'true' when invoked by SpeedtestHandler.
    
    	// Use the maximum parity (N/2), used when saving server configuration files
    	MaxParity bool
    
    	// Provides a per object encryption function, allowing metadata encryption.
    	EncryptFn objectMetaEncryptFn
    
    	// SkipDecommissioned set to 'true' if the call requires skipping the pool being decommissioned.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 20:27:52 UTC 2024
    - 17K bytes
    - Viewed (0)
  7. src/runtime/mfinal.go

    // call KeepAlive(p) after the call to syscall.Write.
    //
    // A single goroutine runs all finalizers for a program, sequentially.
    // If a finalizer must run for a long time, it should do so by starting
    // a new goroutine.
    //
    // In the terminology of the Go memory model, a call
    // SetFinalizer(x, f) “synchronizes before” the finalization call f(x).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/pcln.go

    		}
    
    		fi := ldr.FuncInfo(s)
    		if !fi.Valid() {
    			continue
    		}
    		fi.Preload()
    		for i, ni := 0, fi.NumInlTree(); i < int(ni); i++ {
    			call := fi.InlTree(i).Func
    			if _, ok := seen[call]; !ok {
    				f(call)
    				seen[call] = struct{}{}
    			}
    		}
    	}
    }
    
    // generateFuncnametab creates the function name table. Returns a map of
    // func symbol to the name offset in runtime.funcnamtab.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  9. src/net/net.go

    	// fail instead of blocking. The deadline applies to all future
    	// and pending I/O, not just the immediately following call to
    	// Read or Write. After a deadline has been exceeded, the
    	// connection can be refreshed by setting a deadline in the future.
    	//
    	// If the deadline is exceeded a call to Read or Write or to other
    	// I/O methods will return an error that wraps os.ErrDeadlineExceeded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/LoggingDeprecatedFeatureHandlerTest.groovy

            then:
            outputEventListener.events.empty
    
            where:
            type << WarningMode.values().findAll { !it.shouldDisplayMessages() }
        }
    
        def 'fake call with #deprecationTracePropertyName=true logs full stack trace.'() {
            given:
            System.setProperty(deprecationTracePropertyName, 'true')
            useStackTrace(fakeStackTrace)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 16:09:54 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top