Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 96 of 96 for isLetter (0.18 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyIntegrationTest.groovy

            """
    
            when:
            run "consumer"
            then:
            executedAndNotSkipped(":producer", ":consumer")
        }
    
        @Issue("https://github.com/gradle/gradle/issues/13623")
        def "setter for #fieldModifier property with different type doesn't cause drop of task dependency"() {
            buildFile """
                abstract class Producer extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/metaobject/BeanDynamicObjectTest.groovy

            when:
            dynamicObject.setProperty("prop", "value")
    
            then:
            bean.prop == "value"
        }
    
        def "can set value of property of groovy object when getter has different type to setter"() {
            def bean = new Bean()
            def dynamicObject = new BeanDynamicObject(bean)
    
            when:
            dynamicObject.setProperty("count", "abc")
    
            then:
            bean.count == 3
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/CoreJavadocOptions.java

            return overview.getValue();
        }
    
        @Override
        public void setOverview(String overview) {
            this.overview.setValue(overview);
        }
    
        /**
         * Fluent setter for the overview option.
         * @param overview The new overview.
         * @return The <code>MinimalJavadocOptions</code> object.
         */
        @Override
        public MinimalJavadocOptions overview(String overview) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    ==== Properties removed in Checkstyle and PMD plugins
    
    * The `configDir` getters and setters have been removed from the Checkstle task and extension.
    Use the `configDirectory` property instead.
    * The `rulePriority` getter and setter have been removed from the Pmd task and extension.
    Use the `rulesMinimumPriority` property instead.
    
    ==== Removal of `baseName` property in `distribution` plugin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_node_status.go

    		nodestatus.VolumesInUse(kl.volumeManager.ReconcilerStatesHasBeenSynced, kl.volumeManager.GetVolumesInUse),
    		// TODO(mtaufen): I decided not to move this setter for now, since all it does is send an event
    		// and record state back to the Kubelet runtime object. In the future, I'd like to isolate
    		// these side-effects by decoupling the decisions to send events and partial status recording
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Task.java

     * implementation class.  The properties of this scope are readable or writable based on the presence of the
     * corresponding getter and setter methods.</li>
     *
     * <li>The extensions added to the task by plugins. Each extension is available as a read-only property with the same
     * name as the extension.</li>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top