Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for fixwd (0.13 sec)

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

        auto indices_rank = indices_ty.getRank();
        int64_t num_index_dims = indices_ty.getDimSize(indices_rank - 1);
        if (!params_ty || !indices_ty) return failure();
        // the last dim of indices of GatherNdOp must be fixed shaped
        if (num_index_dims == ShapedType::kDynamic) return failure();
    
        SmallVector<int64_t, 4> slice_sizes;
        slice_sizes.reserve(params_rank);
        for (int64_t i = 0; i < params_rank; ++i) {
    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. ChangeLog.md

    - [`KT-63821`](https://youtrack.jetbrains.com/issue/KT-63821) Copy framework to BUILT_PRODUCTS_DIR in the embedAndSign task
    - [`KT-67892`](https://youtrack.jetbrains.com/issue/KT-67892) KotlinNativeLink task instantiates with a fixed list of apiFiles
    - [`KT-66446`](https://youtrack.jetbrains.com/issue/KT-66446) Diagnostic never showed, and build fails when CocoaPods dependency is used with embedAndSign task and linking type is dynamic
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  3. prow/config/calico.yaml

                      sets refresh. Note: the default for this value is lower than the
                      other refresh intervals as a workaround for a Linux kernel bug that
                      was fixed in kernel version 4.11. If you are using v4.11 or greater
                      you may want to set this to, a higher value to reduce Felix CPU
                      usage. [Default: 10s]'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__storage.k8s.io__v1_openapi.json

                "type": "integer"
              }
            },
            "type": "object"
          },
          "io.k8s.apimachinery.pkg.api.resource.Quantity": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 481.9K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "type": "string"
              }
            },
            "type": "object"
          },
          "io.k8s.apimachinery.pkg.api.resource.Quantity": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  6. docs/en/docs/release-notes.md

    ### Fixes
    
    * ✅ Fix new/recent tests with new fixed `ValidationError` JSON Schema. PR [#4806](https://github.com/tiangolo/fastapi/pull/4806) by [@tiangolo](https://github.com/tiangolo).
    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. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

          <match value="pnot\000" type="string" offset="4"/>
          <!-- General Atom match, specific ftypXXX ones present for subtypes -->
          <match value="ftyp" type="string" offset="4"/>
          <!-- Common starting Atoms of fixed size -->
          <match value="\x00\x00\x00\x08wide" type="string" offset="0"/>
        </magic>
        <glob pattern="*.qt"/>
        <glob pattern="*.mov"/>
        <sub-class-of type="application/quicktime" />
      </mime-type>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    // If inplace is true, it writes the result of the OAPPEND expression n
    // back to the slice being appended to, and returns nil.
    // inplace MUST be set to false if the slice can be SSA'd.
    // Note: this code only handles fixed-count appends. Dotdotdot appends
    // have already been rewritten at this point (by walk).
    func (s *state) append(n *ir.CallExpr, inplace bool) *ssa.Value {
    	// If inplace is false, process as expression "append(s, e1, e2, e3)":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    // sent in the trailers.
    //
    // This mechanism is intended only for trailers that are not known
    // prior to the headers being written. If the set of trailers is fixed
    // or known before the header is written, the normal Go trailers mechanism
    // is preferred:
    //
    //	https://golang.org/pkg/net/http/#ResponseWriter
    //	https://golang.org/pkg/net/http/#example_ResponseWriter_trailers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. doc/go_spec.html

    </p>
    
    
    <h3 id="Min_and_max">Min and max</h3>
    
    <p>
    The built-in functions <code>min</code> and <code>max</code> compute the
    smallest&mdash;or largest, respectively&mdash;value of a fixed number of
    arguments of <a href="#Comparison_operators">ordered types</a>.
    There must be at least one argument
    [<a href="#Go_1.21">Go 1.21</a>].
    </p>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
Back to top