Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,726 for Allows (0.12 sec)

  1. android/guava/src/com/google/common/base/MoreObjects.java

         * again and get a more complete representation of the same object; but properties cannot be
         * removed, so this only allows limited reuse of the helper instance. The helper allows
         * duplication of properties (multiple name/value pairs with the same name can be added).
         */
        @Override
        public String toString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskInputFilePropertiesIntegrationTest.groovy

    class TaskInputFilePropertiesIntegrationTest extends AbstractIntegrationSpec implements ValidationMessageChecker {
        def setup() {
            expectReindentedValidationMessage()
            enableProblemsApiCheck()
        }
    
        def "allows optional @#annotation.simpleName to have null value"() {
            buildFile << """
                import ${GetInputFilesVisitor.name}
                import ${TaskPropertyUtils.name}
                import ${PropertyWalker.name}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/execution/commandline/CommandLineIntegrationTest.groovy

        }
    
        def "allows reconfiguring project cache dir with relative directory"() {
            given:
            buildFile "task foo { outputs.file file('out'); doLast { } }"
    
            when:
            executer.withTasks("foo").withArguments("--project-cache-dir", ".foo").run()
    
            then:
            assert file(".foo").exists()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dynamic_versions.adoc

    Component selection rules may influence which component instance should be selected when multiple versions are available that match a version selector.
    Rules are applied against every available version and allow the version to be explicitly rejected by rule.
    This allows Gradle to ignore any component instance that does not satisfy conditions set by the rule.
    Examples include:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultResolutionStrategySpec.groovy

        def "allows setting forced modules"() {
            expect:
            strategy.forcedModules.empty
    
            when:
            strategy.force 'org.foo:bar:1.0', 'org.foo:baz:2.0'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. pkg/kubelet/container/testing/runtime_mock.go

    func NewMockVersion(ctrl *gomock.Controller) *MockVersion {
    	mock := &MockVersion{ctrl: ctrl}
    	mock.recorder = &MockVersionMockRecorder{mock}
    	return mock
    }
    
    // EXPECT returns an object that allows the caller to indicate expected use.
    func (m *MockVersion) EXPECT() *MockVersionMockRecorder {
    	return m.recorder
    }
    
    // Compare mocks base method.
    func (m *MockVersion) Compare(other string) (int, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 27K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/MoreObjects.java

         * again and get a more complete representation of the same object; but properties cannot be
         * removed, so this only allows limited reuse of the helper instance. The helper allows
         * duplication of properties (multiple name/value pairs with the same name can be added).
         */
        @Override
        public String toString() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/AbstractTestTask.java

         *
         * @param closure The closure to call.
         */
        public void afterTest(Closure closure) {
            addDispatchAsTestListener("afterTest", closure);
        }
    
        /**
         * Allows to set options related to which test events are logged to the console, and on which detail level. For example, to show more information about exceptions use:
         *
         * <pre class='autoTested'>
         * apply plugin: 'java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:49:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    A `plugins{}` block inside `pluginManagement{}` allows all plugin versions for the build to be defined in a single location.
    Plugins can then be applied by id to any build script via the `plugins{}` block.
    
    One benefit of setting plugin versions this way is that the `pluginManagement.plugins{}` does not have the same <<#sec:constrained_syntax,constrained syntax>> as the build script `plugins{}` block.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    [[migmvn:profiles_and_properties]]
    == Migrating Maven profiles and properties
    
    Maven allows you parameterize builds using properties of various sorts.
    Some are read-only properties of the project model, others are user-defined in the POM.
    It even allows you to treat system properties as project properties.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
Back to top