Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 792 for facts (0.21 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/metadata/MavenImmutableAttributesFactory.java

    import org.gradle.api.internal.attributes.ImmutableAttributesFactory;
    
    /**
     * A specialized attributes factory for Maven metadata. The specialized methods take advantage
     * of the fact we know that for derived variants, we're going to see almost always the same input
     * attributes, and the same mutations to make on them, so it's more efficient to map them, than
     * recomputing each time.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ivy/IvyModuleDescriptor.java

     * limitations under the License.
     */
    package org.gradle.api.artifacts.ivy;
    
    import javax.annotation.Nullable;
    
    /**
     * The metadata about an Ivy module that acts as an input to a component metadata rule.
     */
    public interface IvyModuleDescriptor {
        /**
         * Returns the branch attribute of the info element in this descriptor.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 31 08:53:53 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/annotations/Beta.java

     * compatibility guarantees made by its containing library. Note that the presence of this
     * annotation implies nothing about the quality or performance of the API in question, only the fact
     * that it is not "API-frozen."
     *
     * <p>It is generally safe for <i>applications</i> to depend on beta APIs, at the cost of some extra
     * work during upgrades. However it is generally inadvisable for <i>libraries</i> (which get
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 16 19:54:45 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/annotations/Beta.java

     * compatibility guarantees made by its containing library. Note that the presence of this
     * annotation implies nothing about the quality or performance of the API in question, only the fact
     * that it is not "API-frozen."
     *
     * <p>It is generally safe for <i>applications</i> to depend on beta APIs, at the cost of some extra
     * work during upgrades. However it is generally inadvisable for <i>libraries</i> (which get
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 16 19:54:45 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  5. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/CleanupTestDirectory.groovy

    /**
     * Instructs Spock to use {@link CleanupTestDirectoryExtension} to clean up the test directory provided by a
     * {@link org.gradle.test.fixtures.file.TestDirectoryProvider}.  This is to work around the fact that using
     * a test directory provider as a TestRule causes spock to swallow any test failures and the test directory
     * is cleaned up even for failed tests.  {@link CleanupTestDirectoryExtension} on the other hand, registers
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. samples/certs/README.md

    This directory contains sample pre-generated certificate and keys to demonstrate how an operator could configure Citadel with an existing root certificate, signing certificates and keys. In such
    a deployment, Citadel acts as an intermediate certificate authority (CA), under the given root CA.
    Instructions are available [here](https://istio.io/docs/tasks/security/cert-management/plugin-ca-cert/).
    
    The included sample files are:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 16:44:37 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/initialization/buildsrc/BuildSrcIncludedBuildIntegrationTest.groovy

            """
    
            when:
            run()
    
            then:
            result.assertTaskExecuted(":included:jar")
            result.assertTaskExecuted(":buildSrc:jar")
        }
    
        // buildSrc acts like an implicit pluginManagement { } included build
        def "library contributed by buildSrc is not visible to the root build"() {
            writeLibraryTo(file("buildSrc"))
    
            file("build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 02:04:28 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/path-operation-advanced-configuration.md

    You could do that with `openapi_extra`:
    
    ```Python hl_lines="20-37  39-40"
    {!../../../docs_src/path_operation_advanced_configuration/tutorial006.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/readme.md

        > No tests found for given includes: [org.gradle.integtests.tooling.r81.LogLevelConfigCrossVersionSpec](--tests filter)`
    
    You can fix it by adding `-PtestJavaVersion=8` to the build.
    
    This is due to the fact that Gradle 4.6 and older don't support Java 11 and newer, which is checked before the test filter is applied.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 21:50:04 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. testing/integ-test/src/integTest/groovy/org/gradle/integtests/StdioIntegrationTest.groovy

    class StdioIntegrationTest extends AbstractIntegrationSpec {
        def setup() {
            executer.requireDaemon()
            // This isn't actually required - the test is fine with shared daemons
            // In fact, it would be much better to test this feature using shared daemons
            executer.requireIsolatedDaemons()
        }
    
        def "task can read stdin when stdin has bounded length"() {
            given:
            buildFile << '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top