Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getters (0.19 sec)

  1. ChangeLog.md

    - [`KT-46743`](https://youtrack.jetbrains.com/issue/KT-46743) Incremental compilation doesn't process usages of Java property in Kotlin code if getter is removed
    - [`KT-60522`](https://youtrack.jetbrains.com/issue/KT-60522) Incremental compilation doesn't process usages of Java property in Kotlin code if return type of getter changes
    - [`KT-56963`](https://youtrack.jetbrains.com/issue/KT-56963) Add MPP/Jvm incremental compilation tests for both K1 and K2 modes
    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. docs/en/docs/release-notes.md

    * Fix duplicate dependency in `pyproject.toml`. PR [#128](https://github.com/tiangolo/fastapi/pull/128) by [@zxalif](https://github.com/zxalif).
    
    ## 0.10.3
    
    * Add Gitter chat, badge, links, etc. [https://gitter.im/tiangolo/fastapi](https://gitter.im/tiangolo/fastapi) . PR [#117](https://github.com/tiangolo/fastapi/pull/117).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  3. doc/go_spec.html

    <h3 id="Identifiers">Identifiers</h3>
    
    <p>
    Identifiers name program entities such as variables and types.
    An identifier is a sequence of one or more letters and digits.
    The first character in an identifier must be a letter.
    </p>
    <pre class="ebnf">
    identifier = letter { letter | unicode_digit } .
    </pre>
    <pre>
    a
    _x9
    ThisVariableIsExported
    αβ
    </pre>
    
    <p>
    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. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

          // EXPLICIT padding mode and the associated attribute is limited to
          // Conv2D. So, fetch attribute by identifier instead of the
          // op.explicit_paddings() attribute getter.
          explicit_paddings =
              op->template getAttrOfType<ArrayAttr>("explicit_paddings").getValue();
        }
    
        SmallVector<int64_t, num_spatial_dims> spatial_dim_indices;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top