Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 97 for setItems (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_downgrade_and_exclude.adoc

    In our code, shown below, we only use one method from the beanutils library, `PropertyUtils.setSimpleProperty()`.
    Using this method for existing setters does not require any functionality from `commons-collections` as we verified through test coverage.
    
    .Using a utility from the beanutils library
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Managed.java

     *
     * <h3>Abstract classes</h3>
     * <p>
     * A managed type can be implemented as an abstract class.
     * All property getters and setters must be declared {@code abstract} (with the exception of calculated read-only properties).
     * The class cannot contain instance variables, constructors, or any methods that are not a getter or setter.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/BuildProfile.java

     * information about the overall build timing and collection of project specific
     * information.  All timing information is stored as milliseconds since epoch times.
     * <p>
     * Setters are expected to be called in the following order:
     * <ul>
     * <li>setProfilingStarted</li>
     * <li>setBuildStarted</li>
     * <li>setSettingsEvaluated</li>
     * <li>setProjectsLoaded</li>
     * <li>setProjectsEvaluated</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. pkg/controller/garbagecollector/graph.go

    // The single-threaded GraphBuilder.processGraphChanges() is the sole writer of the
    // nodes. The multi-threaded GarbageCollector.attemptToDeleteItem() reads the nodes.
    // WARNING: node has different locks on different fields. setters and getters
    // use the respective locks, so the return values of the getters can be
    // inconsistent.
    type node struct {
    	identity objectReference
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 13:37:56 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/PropertyAccessorTypeTest.groovy

            void setb(String value) { myb = value }
        }
    
        def "property extraction is on par with groovy properties"() {
            given:
            def bean = new Bean()
    
            when:
            // Exercise setters
            bean.url = 'lower-case'
            bean.URL = 'upper-case'
            bean.cCompiler = 'lower-case first char'
            bean.CCompiler = 'upper-case first char'
            bean.cppCompiler = 'cppCompiler'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/JavaPropertyReflectionUtilTest.groovy

            then:
            readableProperty(JavaTestSubject, String, "myProperty").getValue(myProperties) == "otherValue"
        }
    
        def "write property with multiple setters"() {
            when:
            writeableProperty(JavaTestSubject, "myProperty2", String.class).setValue(myProperties, "stringValue")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    include::{snippetsPath}/providers/implicitTaskInputFileDependency/tests/implicitTaskInputFileDependencyKotlin.out[]
    ----
    
    In the example above, the task outputs and inputs are connected before any location is defined.
    The setters can be called at any time before the task is executed, and the change will automatically affect all related input and output properties.
    
    Another important thing to note in this example is the absence of any explicit task dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStore.java

         * @param generatedMethodDetector Predicate to test if a method was generated (vs. being provided explicitly by the user).
         * @param mutableNonFinalClasses Mutable classes that shouldn't need explicit setters
         * @param cacheFactory A factory to create cross-build in-memory caches.
         */
        public DefaultTypeAnnotationMetadataStore(
            Collection<Class<? extends Annotation>> recordedTypeAnnotations,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/services/LLStandaloneFirElementByPsiElementChooser.kt

                is ConeLookupTagBasedType -> lookupTag.name.asString()
    
                // NOTE: Flexible types can occur not only as implicit return types,
                // but also as implicit parameter types, for example in setters with implicit types
                is ConeFlexibleType -> {
                    // since Kotlin decompiler always "renders" flexible types as their lower bound, we can do the same here
                    lowerBound.renderTypeAsKotlinType()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 11:34:07 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/BuildController.java

        /**
         * Fetches a snapshot of the model of the given type for the given element using the given parameter.
         *
         * <p>The parameter type must be an interface only with getters and setters and no nesting is supported.
         * The Tooling API will create a proxy instance of this interface and use the initializer to run against
         * that instance to configure it and then pass to the model builder.
         * </p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:46:37 UTC 2023
    - 9.7K bytes
    - Viewed (0)
Back to top