Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 71 for yFunction (0.23 sec)

  1. src/runtime/proc.go

    // just before the P goes into _Pidle/_Psyscall and neither forEachP
    // nor the P run the safe-point function.
    func runSafePointFn() {
    	p := getg().m.p.ptr()
    	// Resolve the race between forEachP running the safe-point
    	// function on this P's behalf and this P running the
    	// safe-point function directly.
    	if !atomic.Cas(&p.runSafePointFn, 1, 0) {
    		return
    	}
    	sched.safePointFn(p)
    	lock(&sched.lock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	print(*printState)
    
    	// Traverse each element of an AST.  If the function returns
    	// false, traversal of children of that element is skipped.
    	Traverse(func(AST) bool)
    
    	// Copy an AST with possible transformations.
    	// If the skip function returns true, no copy is required.
    	// If the copy function returns nil, no copy is required.
    	// The Copy method will do the right thing if copy returns nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    	dc *driverConn
    	ds *driverStmt
    }
    
    // stmtConnGrabber represents a Tx or Conn that will return the underlying
    // driverConn and release function.
    type stmtConnGrabber interface {
    	// grabConn returns the driverConn and the associated release function
    	// that must be called when the operation completes.
    	grabConn(context.Context) (*driverConn, releaseConn, error)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

            override val diagnosticClass get() = AbstractFunctionInNonAbstractClass::class
            val function: KaCallableSymbol
            val containingClass: KaClassLikeSymbol
        }
    
        interface AbstractFunctionWithBody : KaFirDiagnostic<KtFunction> {
            override val diagnosticClass get() = AbstractFunctionWithBody::class
            val function: KaCallableSymbol
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 172.6K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    //	go doc template.new
    //		Show documentation for html/template's New function.
    //		(html/template is lexically before text/template)
    //	go doc text/template.new # One argument
    //		Show documentation for text/template's New function.
    //	go doc text/template new # Two arguments
    //		Show documentation for text/template's New function.
    //
    //	At least in the current tree, these invocations all print the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "dev": true
        },
        "node_modules/function-bind": {
          "version": "1.1.1",
          "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
          "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==",
          "dev": true
        },
        "node_modules/function.prototype.name": {
          "version": "1.1.5",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    }
    
    // Estimate the max size needed to hold any new trampolines created for this function. This
    // is used to determine when the section can be split if it becomes too large, to ensure that
    // the trampolines are in the same section as the function that uses them.
    func maxSizeTrampolines(ctxt *Link, ldr *loader.Loader, s loader.Sym, isTramp bool) uint64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        if (object.kind_case() == SavedObject::kFunction) {
          if (object_names.GetExportedNames(node_id).empty()) {
            continue;
          }
          std::string error_context =
              "While importing SavedModel function '" +
              object_names.GetExportedNames(node_id)[0].str() + "': ";
          const SavedFunction& function = object.function();
          auto orig_func = symbol_table.lookup<mlir::func::FuncOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

        override val function: KaCallableSymbol,
        override val containingClass: KaClassLikeSymbol,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<KtFunction>(firDiagnostic, token), KaFirDiagnostic.AbstractFunctionInNonAbstractClass
    
    internal class AbstractFunctionWithBodyImpl(
        override val function: KaCallableSymbol,
        firDiagnostic: KtPsiDiagnostic,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet.go

    	// and inform container to reopen log file after log rotation.
    	kl.containerLogManager.Start()
    	// Adding Registration Callback function for CSI Driver
    	kl.pluginManager.AddHandler(pluginwatcherapi.CSIPlugin, plugincache.PluginHandler(csi.PluginHandler))
    	// Adding Registration Callback function for DRA Plugin
    	if utilfeature.DefaultFeatureGate.Enabled(features.DynamicResourceAllocation) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
Back to top