Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for Koop (0.07 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

      int value_count = init_values.size() + 1;
    
      // Prepend a loop induction variable to the initial values.
      SmallVector<Value, 2> init_values_with_loop_iv;
      SmallVector<Type, 2> init_types_with_loop_iv;
      init_values_with_loop_iv.reserve(value_count);
      init_types_with_loop_iv.reserve(value_count);
    
      // The initial value for the loop induction variable is 0.
      init_values_with_loop_iv.push_back(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. doc/go_spec.html

    and may be called again to continue the loop.
    As long as the loop body does not terminate, the "range" clause will continue
    to generate iteration values this way for each <code>yield</code> call until
    <code>f</code> returns.
    If the loop body terminates (such as by a <code>break</code> statement),
    <code>yield</code> returns false and must not be called again.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    	bodyReadCh       chan http2bodyReadMsg       // from handlers -> serve
    	serveMsgCh       chan interface{}            // misc messages & code to send to / run on the serve loop
    	flow             http2outflow                // conn-wide (not stream-specific) outbound flow control
    	inflow           http2inflow                 // conn-wide inbound flow control
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.7.md

    * Fixes [#49418](https://github.com/kubernetes/kubernetes/pull/49418) where kube-controller-manager can panic on volume.CanSupport methods and enter a crash loop. ([#49420](https://github.com/kubernetes/kubernetes/pull/49420), [@gnufied](https://github.com/gnufied))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  5. ChangeLog.md

    - [`KT-62111`](https://youtrack.jetbrains.com/issue/KT-62111) K2 IDE. IllegalArgumentException on for loop with iterator declaration attempt
    - [`KT-63538`](https://youtrack.jetbrains.com/issue/KT-63538) Analysis API: Removing a contract statement via `PsiElement.delete()` does not trigger an out-of-block modification
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    			s.vars[hashVar] = s.newValue1(zext, typs.Uintptr, h)
    
    			// Load mask from cache.
    			mask := s.newValue2(ssa.OpLoad, typs.Uintptr, cache, s.mem())
    			// Jump to loop head.
    			b := s.endBlock()
    			b.AddEdgeTo(loopHead)
    
    			// At loop head, get pointer to the cache entry.
    			//   e := &cache.Entries[hash&mask]
    			s.startBlock(loopHead)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.8.md

    ## Changelog since v1.8.9
    
    ### Other notable changes
    
    * gce: fixes race condition in ServiceController, where nodes weren't updated in the node sync loop, by updating TargetPools in the ensureExternalLoadBalancer call. ([#58368](https://github.com/kubernetes/kubernetes/pull/58368), [@MrHohn](https://github.com/MrHohn))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.11.md

        * The vSphere cloud provider has a cleanup function with a loop,
        * inside of which a write lock was intended to prevent races against
        * VM creation, but the usage of the sync.RWMutex type is incorrect,
        * plus is placed in a defer call so the locking is effectively
        * nonexistent.  This patch adds an anonymous function call inside
        * the loop to correctly handle acquiring the write lock with deferred
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	LJMP:            "LJMP",
    	LLDT:            "LLDT",
    	LMSW:            "LMSW",
    	LODSB:           "LODSB",
    	LODSD:           "LODSD",
    	LODSQ:           "LODSQ",
    	LODSW:           "LODSW",
    	LOOP:            "LOOP",
    	LOOPE:           "LOOPE",
    	LOOPNE:          "LOOPNE",
    	LRET:            "LRET",
    	LSL:             "LSL",
    	LSS:             "LSS",
    	LTR:             "LTR",
    	LZCNT:           "LZCNT",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.30.md

    - Fixed a regression since `1.24` in the scheduling framework when overriding MultiPoint plugins (e.g. default plugins). The incorrect loop logic might have led to a plugin being loaded multiple times, consequently preventing any Pod from being scheduled, which was unexpected.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
Back to top