Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 46 for jsonint (0.16 sec)

  1. pkg/scheduler/apis/config/scheme/scheme_test.go

    	yamlInfo, ok := runtime.SerializerInfoForMediaType(Codecs.SupportedMediaTypes(), runtime.ContentTypeYAML)
    	if !ok {
    		t.Fatalf("unable to locate encoder -- %q is not a supported media type", runtime.ContentTypeYAML)
    	}
    	jsonInfo, ok := runtime.SerializerInfoForMediaType(Codecs.SupportedMediaTypes(), runtime.ContentTypeJSON)
    	if !ok {
    		t.Fatalf("unable to locate encoder -- %q is not a supported media type", runtime.ContentTypeJSON)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Plugins for integration with native projects in XCode and Visual Studio IDEs"
    
    sourceSets {
        main {
            // Incremental Groovy joint-compilation doesn't work with the Error Prone annotation processor
            errorprone.enabled = false
        }
    }
    
    dependencies {
        api(libs.groovy)
        api(libs.guava)
        api(libs.inject)
        api(libs.jsr305)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. manifests/addons/gen.sh

    }
    
    # Set up grafana
    {
      # Generate all dynamic dashboards
      (
        pushd "${DASHBOARDS}" > /dev/null
        jb install
        for file in *.libsonnet; do
          dashboard="${file%.*}"
          jsonnet -J vendor -J lib "${file}" > "${dashboard}-dashboard.gen.json"
        done
      )
      helm3 template grafana grafana \
        --namespace istio-system \
        --version "${GRAFANA_VERSION}" \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/compile/GroovyCompileProblemsIntegrationTest.groovy

                }
            """
            file("src/main/groovy/GroovyBar.groovy") << "public class GroovyBar { def bar() {} }"
    
            when:
            fails(":compileGroovy")
    
            then:
            // If the joint compilation is working correctly, we should exercise the JdkJavaCompiler and we should have detailed problems events
            verifyAll(receivedProblem(0)) {
                fqid == 'compilation:java:java-compilation-error'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 16:25:50 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&Cayleys;":                         "\u212d",
    	"&Ccaron;":                          "\u010c",
    	"&Ccedil;":                          "\u00c7",
    	"&Ccirc;":                           "\u0108",
    	"&Cconint;":                         "\u2230",
    	"&Cdot;":                            "\u010a",
    	"&Cedilla;":                         "\u00b8",
    	"&CenterDot;":                       "\u00b7",
    	"&Cfr;":                             "\u212d",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/CompilationClassBackupService.java

     * that were not deleted by Gradle before annotation processing, would anyway result in full-recompilation, due to annotation processors limitations.
     * And in case of a Groovy/Java joint compilation, incremental compilation is anyway disabled, when annotation processing is present.
     */
    public class CompilationClassBackupService {
    
        private final Set<String> classesToCompile;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/tasks/GroovySourceSet.java

    @Deprecated
    public interface GroovySourceSet {
        /**
         * Returns the source to be compiled by the Groovy compiler for this source set. Any Java source present in this set
         * will be passed to the Groovy compiler for joint compilation.
         *
         * @return The Groovy/Java source. Never returns null.
         */
        SourceDirectorySet getGroovy();
    
        /**
         * Configures the Groovy source for this set.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/compile/CachedGroovyCompileIntegrationTest.groovy

            """.stripIndent()
    
            when:
            withBuildCache().run compilationTask
    
            then:
            compileIsNotCached()
        }
    
        def "joint Java and Groovy compilation can be cached"() {
            given:
            buildScript """
                plugins {
                    id 'groovy'
                }
    
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/build.gradle.kts

    import java.util.Properties
    
    plugins {
        id("gradlebuild.internal.java")
    }
    
    description = "Collection of test fixtures for integration tests, internal use only"
    
    sourceSets {
        main {
            // Incremental Groovy joint-compilation doesn't work with the Error Prone annotation processor
            errorprone.enabled = false
        }
    }
    
    dependencies {
        api(project(":base-services")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts

            val extension = this.extensions.create<ErrorProneSourceSetExtension>("errorprone", project.objects.property<Boolean>())
            // Enable it only for the main source set by default, as incremental Groovy
            // joint-compilation doesn't work with the Error Prone annotation processor
            extension.enabled.convention(this.name == "main")
    
            project.dependencies.addProvider(
                annotationProcessorConfigurationName,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:36 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top