Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for Calling (0.25 sec)

  1. ChangeLog.md

    - [`KT-66595`](https://youtrack.jetbrains.com/issue/KT-66595) K2: compiler FIR checking crash on destructuring declarations calling hidden componentN declarations
    - [`KT-62129`](https://youtrack.jetbrains.com/issue/KT-62129) K2: Verification error on calling an extension from an env with 2+ context receivers
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.30.md

    - Fix: Mount point may become local without calling NodePublishVolume after node rebooting. ([#119923](https://github.com/kubernetes/kubernetes/pull/119923), [@cvvz](https://github.com/cvvz)) [SIG Node and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  3. doc/go_spec.html

    or, for function parameters and results, the signature
    of a <a href="#Function_declarations">function declaration</a>
    or <a href="#Function_literals">function literal</a> reserves
    storage for a named variable.
    
    Calling the built-in function <a href="#Allocation"><code>new</code></a>
    or taking the address of a <a href="#Composite_literals">composite literal</a>
    allocates storage for a variable at run time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    	return r
    }
    
    // condBranch evaluates the boolean expression cond and branches to yes
    // if cond is true and no if cond is false.
    // This function is intended to handle && and || better than just calling
    // s.expr(cond) and branching on the result.
    func (s *state) condBranch(cond ir.Node, yes, no *ssa.Block, likely int8) {
    	switch cond.Op() {
    	case ir.OANDAND:
    		cond := cond.(*ir.LogicalExpr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    	if s == nil {
    		return // if the Server was used without calling ConfigureServer
    	}
    	s.mu.Lock()
    	s.activeConns[sc] = struct{}{}
    	s.mu.Unlock()
    }
    
    func (s *http2serverInternalState) unregisterConn(sc *http2serverConn) {
    	if s == nil {
    		return // if the Server was used without calling ConfigureServer
    	}
    	s.mu.Lock()
    	delete(s.activeConns, sc)
    	s.mu.Unlock()
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. docs/en/docs/release-notes.md

        * PR [#294](https://github.com/tiangolo/fastapi/pull/294).
    
    ## 0.28.0
    
    * Implement dependency cache per request.
        * This avoids calling each dependency multiple times for the same request.
        * This is useful while calling external services, performing costly computation, etc.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.25.md

      - [Changes by Kind](#changes-by-kind-15)
        - [Deprecation](#deprecation)
        - [API Change](#api-change-4)
        - [Feature](#feature-14)
        - [Documentation](#documentation)
        - [Failing Test](#failing-test)
        - [Bug or Regression](#bug-or-regression-15)
        - [Other (Cleanup or Flake)](#other-cleanup-or-flake-4)
      - [Dependencies](#dependencies-16)
        - [Added](#added-16)
        - [Changed](#changed-16)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.28.md

        - [Container Images](#container-images-8)
      - [Changelog since v1.28.2](#changelog-since-v1282)
      - [Changes by Kind](#changes-by-kind-8)
        - [Feature](#feature-7)
        - [Failing Test](#failing-test)
        - [Bug or Regression](#bug-or-regression-8)
        - [Other (Cleanup or Flake)](#other-cleanup-or-flake-4)
      - [Dependencies](#dependencies-8)
        - [Added](#added-8)
        - [Changed](#changed-8)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.27.md

        - [Container Images](#container-images-8)
      - [Changelog since v1.27.6](#changelog-since-v1276)
      - [Changes by Kind](#changes-by-kind-8)
        - [Feature](#feature-7)
        - [Failing Test](#failing-test)
        - [Bug or Regression](#bug-or-regression-8)
        - [Other (Cleanup or Flake)](#other-cleanup-or-flake-3)
      - [Dependencies](#dependencies-8)
        - [Added](#added-8)
        - [Changed](#changed-8)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.29.md

    - `kube-apiserver` updated:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
Back to top