Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 166 for Sizing (0.16 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/AbstractContextAwareModel.java

        public AbstractContextAwareModel(@Nullable String context) {
            this.context = context;
        }
    
        /**
         * The context where this dependency model was built from, used
         * for debugging and giving hints to the user.
         * It's intentionally not part of the identity.
         *
         * @return the context
         */
        @Nullable
        public String getContext() {
            return context;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

    are working on. And as mentioned above, API changes should be discussed
    thoroughly before moving to code.
    
    Some examples of types of pull requests that are immediately helpful:
    
      - Fixing a bug without changing a public API.
      - Fixing or improving documentation.
      - Improvements to Maven configuration.
    
    Guidelines for any code contributions:
    
      1. Any significant changes should be accompanied by tests. The project already
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-use/build.gradle.kts

        }
    }
    
    testFilesCleanup.reportOnly = true
    
    description = """Provides functionality for resolving and managing plugins during their application to projects."""
    
    // Remove as part of fixing https://github.com/gradle/configuration-cache/issues/585
    tasks.configCacheIntegTest {
        systemProperties["org.gradle.configuration-cache.internal.test-disable-load-after-store"] = "true"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ProcessFixture.groovy

                return ["bash"]
            } else if (OperatingSystem.current().windows) {
                if (killTree) {
                    // '/T' kills full process tree
                    // TODO: '/T' option should be removed after fixing GRADLE-3298
                    return ["taskkill.exe", "/F", "/T", "/PID", pid]
                } else {
                    return ["taskkill.exe", "/F", "/PID", pid]
                }
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. platforms/documentation/samples/build.gradle.kts

        integTestImplementation(testFixtures(project(":model-core")))
    
        integTestDistributionRuntimeOnly(project(":distributions-full"))
    }
    
    testFilesCleanup.reportOnly = true
    
    // Remove as part of fixing https://github.com/gradle/configuration-cache/issues/585
    tasks.configCacheIntegTest {
        systemProperties["org.gradle.configuration-cache.internal.test-disable-load-after-store"] = "true"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/MetadataResolutionContext.java

        /**
         * The cache policy of a repository
         *
         * @return the cache policy
         */
        CachePolicy getCachePolicy();
    
        /**
         * Provides an injecting instantiator, giving access to services potentially contextual to a repository.
         *
         * @return a injecting instantiator
         */
        Instantiator getInjectingInstantiator();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingEventCatapult.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.model.building;
    
    /**
     * Assists in firing events from a generic method by abstracting from the actual callback method to be called on the
     * listener.
     *
     */
    interface ModelBuildingEventCatapult {
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. docs/en/docs/deployment/index.md

    This is in contrast to the **development** stages, where you are constantly changing the code, breaking it and fixing it, stopping and restarting the development server, etc.
    
    ## Deployment Strategies
    
    There are several ways to do it depending on your specific use case and the tools that you use.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. guava-gwt/src/com/google/common/annotations/Annotations.gwt.xml

    <module>
    <source path="">
      <!-- Hack to keep collect from hiding collect.testing supersource: -->
      <exclude name="**/testing/**"/>
    </source>
    
    <!--
        We used to set this only for packages that had manual supersource. That
        worked everywhere that I know of except for one place: when running the GWT
        util.concurrent tests under Guava.
    
        The problem is that GWT responds poorly to two .gwt.xml files in the same
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 06 15:30:58 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  10. platforms/native/testing-native/build.gradle.kts

            because("ProjectBuilder tests load services from a Gradle distribution.")
        }
        integTestDistributionRuntimeOnly(project(":distributions-native"))
    }
    
    // Remove as part of fixing https://github.com/gradle/configuration-cache/issues/585
    tasks.configCacheIntegTest {
        systemProperties["org.gradle.configuration-cache.internal.test-disable-load-after-store"] = "true"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top