Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 900 for wbMove (0.12 sec)

  1. android/guava/src/com/google/common/collect/StandardTable.java

           *
           * - rowEntry isn't cleared except below. If it was cleared below, then either
           *   columnIterator.remove() would have failed above (if the user hasn't called next() since
           *   then) or rowEntry would have been initialized by next() (as discussed above).
           */
          if (requireNonNull(rowEntry).getValue().isEmpty()) {
            rowIterator.remove();
            rowEntry = null;
          }
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 29.8K bytes
    - Viewed (0)
  2. docs/en/docs/async.md

    Anyway, in any of the cases above, FastAPI will still work asynchronously and be extremely fast.
    
    But by following the steps above, it will be able to do some performance optimizations.
    
    ## Technical Details
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. pkg/kube/krt/README.md

    Additionally, if a single `Pod` changes we only recompute one `SimplePod`.
    
    Above we have a one-to-one mapping of input and output.
    We may have one-to-many mappings, though.
    In these cases, usually its best to use a `ManyCollection`.
    Like the above examples, its *possible* to express these as normal `Collection`s, but likely inefficient.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    | 7.5 and newer     | link:https://github.com/sbt/zinc[SBT Zinc]. Versions 1.6.0 and above. | `org.scala-sbt:zinc_2.13` | Scala `2.13.x` is required for _running_ Zinc. | Scala `2.10.x` through `3.x` can be compiled.
    | 6.0 to 7.5        | link:https://github.com/sbt/zinc[SBT Zinc]. Versions 1.2.0 and above. | `org.scala-sbt:zinc_2.12` | Scala `2.12.x` is required for _running_ Zinc. | Scala `2.10.x` through `2.13.x` can be compiled.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1/customresourcedefinition.go

    		Body(customResourceDefinition).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    // UpdateStatus was generated because the type contains a Status member.
    // Add a +genclient:noStatus comment above the type to avoid generating UpdateStatus().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/legalize_tf.cc

            rewriter
                .create<TF::BroadcastToOp>(op->getLoc(), broadcast_type, rhs,
                                           broadcast_shape)
                .getOutput();
    
        // Recreate an op with the above BroadcastTo op results.
        RankedTensorType result_type = RankedTensorType::get(
            symbolic_broadcast_shape, getElementTypeOrSelf(out.getType()));
        rewriter.replaceOpWithNewOp<SourceOp>(op, result_type, broadcasted_lhs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 20:06:54 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/DefaultPrecompiledScriptPluginsSupport.kt

     *  related plugin target suffix (see above)
     *  - for a script containing a package declaration, the plugin id is the declared package name dot the file name without the
     *  related plugin target suffix (see above)
     *
     * For a concrete example, take the definition of a precompiled [Project] script plugin id of
     * `my.project.plugin`. Given the two rules above, there are two conventional ways to do it:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 10:44:10 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. src/index/suffixarray/sais.go

    // input-sized scans and a typical level does 16 scans.
    //
    // The linear scans do not cost anywhere near as much as
    // the random accesses to the text made during a few of
    // the scans (specifically #6, #9, #16, #19, #22 marked above).
    // In real texts, there is not much but some locality to
    // the accesses, due to the repetitive structure of the text
    // (the same reason Burrows-Wheeler compression is so effective).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  9. src/net/http/cgi/host.go

    		// And kill the child CGI process so we don't hang on
    		// the deferred cmd.Wait above if the error was just
    		// the client (rw) going away. If it was a read error
    		// (because the child died itself), then the extra
    		// kill of an already-dead process is harmless (the PID
    		// won't be reused until the Wait above).
    		cmd.Process.Kill()
    	}
    }
    
    func (h *Handler) printf(format string, v ...any) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1/customresourcedefinition.go

    		Body(customResourceDefinition).
    		Do(ctx).
    		Into(result)
    	return
    }
    
    // UpdateStatus was generated because the type contains a Status member.
    // Add a +genclient:noStatus comment above the type to avoid generating UpdateStatus().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top