Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,272 for updateSV (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tensor_array_ops_decomposition.mlir

    // CHECK: %[[UPDATE1:.*]] = "tf.XlaDynamicUpdateSlice"(%[[READ1]],
    // CHECK: "tf.AssignVariableOp"(%[[CARG1]], %[[UPDATE1]])
    // CHECK: %[[READ2:.*]] = "tf.ReadVariableOp"(%[[CARG2]]) : (tensor<!tf_type.resource<tensor<5x3xf32>>>) -> tensor<5x3xf32>
    // CHECK: %[[UPDATE2:.*]] = "tf.XlaDynamicUpdateSlice"(%[[READ2]],
    // CHECK: "tf.AssignVariableOp"(%[[CARG2]], %[[UPDATE2]])
    // CHECK: return %[[CARG0]]
    
    // -----
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 49K bytes
    - Viewed (0)
  2. hack/update-vendor.sh

    if [[ "${GOPROXY:-}" == "off" ]]; then
      kube::log::error "Cannot run hack/update-vendor.sh with \$GOPROXY=off"
      exit 1
    fi
    
    kube::util::require-jq
    
    TMP_DIR="${TMP_DIR:-$(mktemp -d /tmp/update-vendor.XXXX)}"
    LOG_FILE="${LOG_FILE:-${TMP_DIR}/update-vendor.log}"
    kube::log::status "logfile at ${LOG_FILE}"
    
    # Set up some FDs for this script to use, while capturing everything else to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  3. releasenotes/notes/kiali-update.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
     - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 05 20:45:15 UTC 2020
    - 135 bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/body-updates.md

        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="34"
        {!> ../../../docs_src/body_updates/tutorial002.py!}
        ```
    
    ### Pydantics `update`-Parameter verwenden
    
    Jetzt können Sie eine Kopie des existierenden Modells mittels `.model_copy()` erstellen, wobei Sie dem `update`-Parameter ein `dict` mit den zu ändernden Daten übergeben.
    
    !!! info
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:37 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. docs/ja/docs/tutorial/body-updates.md

    これを使うことで、デフォルト値を省略して、設定された(リクエストで送られた)データのみを含む`dict`を生成することができます:
    
    ```Python hl_lines="34"
    {!../../../docs_src/body_updates/tutorial002.py!}
    ```
    
    ### Pydanticの`update`パラメータ
    
    ここで、`.copy()`を用いて既存のモデルのコピーを作成し、`update`パラメータに更新するデータを含む`dict`を渡すことができます。
    
    `stored_item_model.copy(update=update_data)`のように:
    
    ```Python hl_lines="35"
    {!../../../docs_src/body_updates/tutorial002.py!}
    ```
    
    ### 部分的更新のまとめ
    
    まとめると、部分的な更新を適用するには、次のようにします:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/PerformanceTestIdProvider.groovy

            methodName = description.methodName
            className = description.className
            updateId()
            return base
        }
    
        void setTestSpec(testSpec) {
            this.testSpec = testSpec
            updateId()
        }
    
        def updateId() {
            if (methodName != null && testSpec != null) {
                if (testSpec.hasProperty('testId') && testSpec.testId == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. test/fixedbugs/issue44732.dir/foo/foo.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package foo
    
    type Foo struct {
    	updatecb func()
    }
    
    func NewFoo() *Foo {
    	return &Foo{updatecb: nil}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 08 19:43:19 UTC 2021
    - 262 bytes
    - Viewed (0)
  8. src/internal/godebug/godebug.go

    func update(def, env string) {
    	updateMu.Lock()
    	defer updateMu.Unlock()
    
    	// Update all the cached values, creating new ones as needed.
    	// We parse the environment variable first, so that any settings it has
    	// are already locked in place (did[name] = true) before we consider
    	// the defaults.
    	did := make(map[string]bool)
    	parse(did, env)
    	parse(did, def)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. hack/update-codegen.sh

        local report_file="${OUT_DIR}/api_violations.report"
        # When UPDATE_API_KNOWN_VIOLATIONS is set to be true, let the generator to write
        # updated API violations to the known API violation exceptions list.
        if [[ "${UPDATE_API_KNOWN_VIOLATIONS}" == true ]]; then
            report_file="${known_violations_file}"
        fi
    
        if [[ "${DBG_CODEGEN}" == 1 ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/hack/update-codegen.sh

    if [[ -n "${API_KNOWN_VIOLATIONS_DIR:-}" ]]; then
        report_filename="${API_KNOWN_VIOLATIONS_DIR}/apiextensions_violation_exceptions.list"
        if [[ "${UPDATE_API_KNOWN_VIOLATIONS:-}" == "true" ]]; then
            update_report="--update-report"
        fi
    fi
    
    kube::codegen::gen_openapi \
        --extra-pkgs k8s.io/api/autoscaling/v1 `# needed for Scale type` \
        --output-dir "${SCRIPT_ROOT}/pkg/generated/openapi" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top