Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for JsonSlurper (0.19 sec)

  1. platforms/software/dependency-management/src/scripts/process-log.groovy

            entry.collect {
                sortDeep(it)
            }.sort()
        } else {
            entry
        }
    }
    
    private sort(String spec) {
        def jsonSlurper = new JsonSlurper()
        def parsed = jsonSlurper.parseText(spec)
        def sorted = sortDeep(parsed)
        JsonOutput.toJson(sorted)
    }
    
    private File findProcessedDirectory() {
        int cpt = 0
        File processedDir
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r85/ProblemProgressEventCrossVersionTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.tooling.r85
    
    import groovy.json.JsonSlurper
    import org.gradle.integtests.tooling.fixture.ToolingApiSpecification
    import org.gradle.integtests.tooling.fixture.ToolingApiVersion
    import org.gradle.tooling.BuildException
    import org.gradle.tooling.events.ProgressEvent
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 06:47:12 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/LatestNightlyBuildDeterminer.groovy

     */
    
    package org.gradle.performance.fixture
    
    import groovy.json.JsonSlurper
    import org.gradle.api.GradleException
    
    class LatestNightlyBuildDeterminer {
        private static String latestNightlyVersion
    
        static String getLatestNightlyVersion() {
            if (latestNightlyVersion == null) {
                def version = new JsonSlurper().parseText(new URL("https://services.gradle.org/versions/nightly").text)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerWithSupplierIntegrationTest.groovy

            metadataListerClass = 'MyLister'
            metadataSupplierClass = 'MySupplier'
            buildFile << """import groovy.json.JsonSlurper
    
                class MyLister implements ComponentMetadataVersionLister {
    
                    final RepositoryResourceAccessor repositoryResourceAccessor
    
                    @javax.inject.Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/results/TestDataGeneratorTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.performance.results
    
    import groovy.json.JsonSlurper
    import org.gradle.performance.ResultSpecification
    import org.gradle.performance.results.report.TestDataGenerator
    import spock.lang.Subject
    
    class TestDataGeneratorTest extends ResultSpecification {
        @Subject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/problems/JsonModelWriterTest.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.problems
    
    import groovy.json.JsonSlurper
    import org.gradle.internal.extensions.stdlib.uncheckedCast
    import org.gradle.internal.configuration.problems.DecoratedPropertyProblem
    import org.gradle.internal.configuration.problems.PropertyTrace
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise-plugin-performance/src/testFixtures/groovy/org/gradle/performance/AbstractBuildScanPluginPerformanceTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.performance
    
    import groovy.json.JsonSlurper
    import org.gradle.integtests.fixtures.executer.IntegrationTestBuildContext
    import org.gradle.integtests.fixtures.versions.ReleasedVersionDistributions
    import org.gradle.performance.fixture.BuildExperimentSpec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:56 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. platforms/core-execution/workers/src/testFixtures/groovy/org/gradle/workers/fixtures/OptionsVerifier.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.workers.fixtures
    
    import groovy.json.JsonSlurper
    import org.gradle.util.internal.TextUtil
    
    class OptionsVerifier {
        private static final ARGUMENTS = "arguments"
        private static final BOOTSTRAP_CLASSPATH = "bootstrapClassPath"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/ExcludeJsonLogToCode.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.internal.artifacts.ivyservice.resolveengine.excludes.factories
    
    import groovy.json.JsonSlurper
    
    class ExcludeJsonLogToCode {
        private final static List<String> WORDS = [
            "shake",
            "grain",
            "root",
            "rain",
            "cover",
            "crib",
            "lunchroom",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildCacheKeyFixture.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures
    
    import groovy.json.JsonSlurper
    import org.gradle.api.internal.tasks.SnapshotTaskInputsBuildOperationType
    import org.gradle.api.internal.tasks.execution.ExecuteTaskBuildOperationType
    import org.gradle.api.services.BuildService
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top