Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,620 for ARE (0.03 sec)

  1. platforms/core-runtime/service-provider/src/main/java/org/gradle/internal/service/scopes/GradleModuleServices.java

         *
         * <p>Global services are visible to all other services.</p>
         *
         * @see Scope.Global
         */
        void registerGlobalServices(ServiceRegistration registration);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/Scope.java

    public interface Scope {
    
        /**
         * These services are reused across builds in the same process.
         *
         * <p>Global services are visible to all other services.</p>
         */
        interface Global extends Scope {}
    
        /**
         * These services are reused across builds in the same process while the Gradle user home directory remains unchanged.
         * The services are closed when the Gradle user home directory changes.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/stored.rules

    #
    #Fri Jan 19 18:01:32 EST 2024
    classes\ that\ are\ Gradle\ public\ API\ should\ have\ accessors\ with\ symmetrical\ @Nullable\ annotations=public-api-symmetrical-accessors-nullability.txt
    classes\ that\ are\ Gradle\ public\ API\ should\ not\ have\ direct\ super-class\ or\ interface\ that\ are\ Gradle\ Internal\ API=public-api-not-extends-internal-types.txt
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. src/go/types/predicates.go

    		if y == nil {
    			return false
    		}
    
    		// Two function types are identical if they have the same number of
    		// parameters and result values, corresponding parameter and result types
    		// are identical, and either both functions are variadic or neither is.
    		// Parameter and result names are not required to match, and type
    		// parameters are considered identical modulo renaming.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/predicates.go

    		if y == nil {
    			return false
    		}
    
    		// Two function types are identical if they have the same number of
    		// parameters and result values, corresponding parameter and result types
    		// are identical, and either both functions are variadic or neither is.
    		// Parameter and result names are not required to match, and type
    		// parameters are considered identical modulo renaming.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncompatibleTasksIntegrationTest.groovy

            }
        }
    
        def "problems in tasks that are not marked incompatible are treated as failures when incompatible tasks are also scheduled"() {
            given:
            addTasksWithProblems()
    
            when:
            configurationCacheFails("declared", "notDeclared")
    
            then:
            result.assertTasksExecuted(":declared", ":notDeclared")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

                // Type parameters, return types and other annotations are all contained in KtUserType,
                // and are never considered used as expressions
                is KtUserType ->
                    false
    
                // Only top-level named declarations have KtFile/KtScript Parents, and are never considered used
                is KtFile ->
                    false
                is KtScript ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/single_versions.adoc

    * The equivalent parts of 2 versions are compared using the following rules:
    ** If both parts are numeric, the highest numeric value is **higher**: `1.1` < `1.2`
    ** If one part is numeric, it is considered **higher** than the non-numeric part: `1.a` < `1.1`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:46:26 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/InspectsConfigurationReport.groovy

        void hasLegacyLegend() {
            outputContains("(l) Legacy or deprecated configuration. Those are variants created for backwards compatibility which are both resolvable and consumable.")
        }
    
        void doesNotHaveLegacyLegend() {
            outputDoesNotContain("(l) Legacy or deprecated configuration. Those are variants created for backwards compatibility which are both resolvable and consumable.")
        }
    
        void hasIncubatingLegend() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. testing/architecture-test/src/test/java/org/gradle/architecture/test/ProviderMigrationArchitectureTest.java

            .and(not(declaredIn(ConfigurableFileCollection.class)))
            .and(are(declaredIn(class_with_any_mutable_property)))
            .and(are(getters))
            .and(not(annotatedWith(Inject.class)))
            .as("mutable public API properties");
    
        @SuppressWarnings("deprecation")
        private static final DescribedPredicate<JavaMethod> task_properties = ArchPredicates.<JavaMethod>are(public_api_methods)
            .and(declaredIn(assignableTo(Task.class)))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top