Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for beginArray (0.1 sec)

  1. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/metadata/JsonWriterScope.java

        }
    
        protected void writeArray(Contents contents) throws IOException {
            jsonWriter.beginArray();
            contents.write();
            endArray();
        }
    
        protected void beginArray(String name) throws IOException {
            jsonWriter.name(name);
            jsonWriter.beginArray();
        }
    
        protected void endArray() throws IOException {
            jsonWriter.endArray();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/JsonModelWriter.kt

        }
    
        private
        inline fun <T> jsonList(list: Iterable<T>, body: (T) -> Unit) {
            beginArray()
            var first = true
            list.forEach {
                if (first) first = false else comma()
                body(it)
            }
            endArray()
        }
    
        private
        fun beginArray() {
            write('[')
        }
    
        private
        fun endArray() {
            write(']')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/version/CommandLineToolVersionLocator.java

            List<VisualStudioInstallCandidate> installs = new ArrayList<>();
            JsonReader reader = new JsonReader(new StringReader(json));
            try {
                try {
                    reader.beginArray();
                    while (reader.hasNext()) {
                        VisualStudioInstallCandidate candidate = readInstall(reader);
    
                        if (candidate != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top