Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 121 for conventions (0.2 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDevelocityPluginIntegrationTest.groovy

        def setup() {
            settingsFile '''
                pluginManagement {
                    includeBuild("dv-conventions")
                }
                plugins {
                    id("dv-conventions")
                }
            '''
    
            buildFile '''
                plugins { id("java") }
            '''
        }
    
        @NotYetImplemented
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

                ?: Factory {
                    // Find convention
                    // Reflective look up to still support plugins that inlined this function once conventions will be removed
                    this::class.java.methods.firstOrNull { it.name == "getConvention" }?.invoke(this)?.let { convention ->
                        convention::class.java.getMethod("findPlugin", Class::class.java).invoke(convention, T::class.java)
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheConventionMappingIntegrationTest.groovy

                    archiveFileName.convention("something")
                }
            """
    
            expect: 'convention mapping is ignored'
            configurationCacheRun 'myTask'
    
            and: 'convention mapping is ignored just the same'
            configurationCacheRun 'myTask'
        }
    
        def "restores convention mapped task input property explicitly set to null"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

            ["project"].toSet() == project.stepResults.keySet().collect { it.stepIdentifier.key }.toSet()
    
            and: 'conventions get properly applied'
            // check the conventions in the resolution results, they should be there, and it is independent of the DOM overlay
            def projectEvaluated = project.stepResults.values()[0] as EvaluationResult.Evaluated<AnalysisStepResult>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  5. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"metadata": {
    						SchemaProps: spec.SchemaProps{
    							Description: "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata.",
    							Default:     map[string]interface{}{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/requirements.in

    opentelemetry-api==1.22.0
    opentelemetry-instrumentation==0.43b0
    opentelemetry-instrumentation-flask==0.43b0
    opentelemetry-instrumentation-wsgi==0.43b0
    opentelemetry-propagator-b3==1.22.0
    opentelemetry-sdk==1.22.0
    opentelemetry-semantic-conventions==0.43b0
    opentelemetry-util-http==0.43b0
    prometheus-client==0.19.0
    requests==2.31.0
    simplejson==3.19.2
    urllib3==2.2.0
    gunicorn==22.0.0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 485 bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/batch/v1/types.go

    const (
    	// All Kubernetes labels need to be prefixed with Kubernetes to distinguish them from end-user labels
    	// More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#label-selector-and-annotation-conventions
    	labelPrefix = "batch.kubernetes.io/"
    
    	// CronJobScheduledTimestampAnnotation is the scheduled timestamp annotation for the Job.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    === Deprecations
    
    ==== Deprecated registration of plugin conventions
    
    Using plugin conventions has been emitting warnings since Gradle 8.2.
    Now, registering plugin conventions will also trigger deprecation warnings.
    For more information, see the <<deprecated_access_to_conventions, section about plugin convention deprecation>>.
    
    [[string_invoke]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  9. platforms/software/testing-base/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = """Basic testing related plugins, which establish conventions for testing output directories,
    and setup basic testing-related features like a testSuites container and the testing extension.  It provides most of the
    testing-related abstract base types and interfaces for things like Test tasks, listeners and filters.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/KtAnalysisSession.kt

     * - It should not be accessed from the event dispatch thread or outside a read action.
     * - It should not be leaked outside the read action it was created in. To ensure that an analysis session isn't leaked, there are
     *   additional conventions, explained further below.
     * - All entities retrieved from an analysis session should not be leaked outside the read action the analysis session was created in.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 18:45:26 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top