Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for endArray (0.25 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/JsonModelWriter.kt

            var first = true
            list.forEach {
                if (first) first = false else comma()
                body(it)
            }
            endArray()
        }
    
        private
        fun beginArray() {
            write('[')
        }
    
        private
        fun endArray() {
            write(']')
        }
    
        private
        fun property(name: String, value: String) {
            property(name) { jsonString(value) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/ValidationProblemSerialization.java

                out.name("subcategories").beginArray();
                for (String sc : value.getSubcategories()) {
                    out.value(sc);
                }
                out.endArray();
                out.endObject();
            }
    
            @Override
            public ProblemCategory read(JsonReader in) throws IOException {
                in.beginObject();
                String namespace = null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/GradleModuleMetadata.groovy

        private List<Object> readArray(JsonReader reader) {
            List<Object> values = []
            reader.beginArray()
            while (reader.peek() != JsonToken.END_ARRAY) {
                Object value = readAny(reader)
                values.add(value)
            }
            reader.endArray()
            return values
        }
    
        static Map<String, String> normalizeForTests(Map<String, ?> attributes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. RELEASE.md

        [`tf.experimental.numpy`](https://www.tensorflow.org/api_docs/python/tf/experimental/numpy),
        which is a NumPy-compatible API for writing TF programs. This module
        provides class `ndarray`, which mimics the `ndarray` class in NumPy, and
        wraps an immutable `tf.Tensor` under the hood. A subset of NumPy functions
        (e.g. `numpy.add`) are provided. Their inter-operation with TF facilities is
        seamless in most cases. See
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top