Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,654 for ARE (0.04 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. src/reflect/deepequal.go

    //
    // Func values are deeply equal if both are nil; otherwise they are not deeply equal.
    //
    // Interface values are deeply equal if they hold deeply equal concrete values.
    //
    // Map values are deeply equal when all of the following are true:
    // they are both nil or both non-nil, they have the same length,
    // and either they are the same map object or their corresponding keys
    // (matched using Go equality) map to deeply equal values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:30 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  3. platforms/jvm/language-jvm/src/main/java/org/gradle/api/plugins/jvm/JvmComponentDependencies.java

     *
     * <ul>
     *     <li><code>implementation</code> dependencies are used at compilation and runtime.</li>
     *     <li><code>compileOnly</code> dependencies are used only at compilation and are not available at runtime.</li>
     *     <li><code>runtimeOnly</code> dependencies are not available at compilation and are used only at runtime.</li>
     *     <li><code>annotationProcessor</code> dependencies are used only at compilation for the annotation processor classpath</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 18:56:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/library_vs_application.adoc

    [[sub:producer-variants]]
    == Producer variants
    
    A producer may want to generate different artifacts for different kinds of consumers: for the same source code, different _binaries_ are produced.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/feature_lifecycle.adoc

    When no problems are found after a short time (usually a week), the release candidate is promoted to a general availability (GA) release.
    If a regression is found in the release candidate, a new RC distribution is created, and the process repeats.
    Release candidates are supported for as long as the release window is open, but they are not intended to be used for production.
    Bug reports are greatly appreciated during the RC phase.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompileSpec.java

        /**
         * Classes to process are already compiled classes that are passed to Java compiler.
         * They are passed to Java compiler since they are required by some annotation processor to revisit.
         */
        Set<String> getClassesToProcess();
    
        void setClassesToCompile(Set<String> classes);
    
        /**
         * Classes to compile are all classes that we know from Java sources that will be compiled.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 13:38:58 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/cache/CacheConfigurations.java

        /**
         * Configures caching for wrapper distributions that are released Gradle versions.  By default, released
         * distributions are removed after 30 days of not being used.
         */
        void releasedWrappers(Action<? super CacheResourceConfiguration> cacheConfiguration);
    
        /**
         * Returns the cache configuration for wrapper distributions that are released Gradle versions.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 20:02:29 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_constraints.adoc

    NOTE: Dependency constraints are only published when using <<publishing_gradle_module_metadata.adoc#sec:understanding-gradle-module-md,Gradle Module Metadata>>.
    This means that currently they are only fully supported if Gradle is used for publishing and consuming (i.e. they are 'lost' when consuming modules with Maven or Ivy).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top