Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 100 for mutable_s (0.48 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelNodeInternal.java

            return state;
        }
    
        public void setState(ModelNode.State state) {
            this.state = state;
        }
    
        @Override
        public boolean isMutable() {
            return state.mutable;
        }
    
        @Nullable
        @Override
        public abstract ModelNodeInternal getLink(String name);
    
        @Override
        public boolean canBeViewedAs(ModelType<?> type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:51:08 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/AbstractPluginValidationIntegrationSpec.groovy

                    contextualLabel == "Type \'MyTask\' property \'mutablePropertyWithSetter\' of mutable type '${testedType.replace('<String>', '')}' is writable"
                    details == "Properties of type '${testedType.replace('<String>', '')}' are already mutable"
                    solutions == [ 'Remove the \'setMutablePropertyWithSetter\' method' ]
                    additionalData.asMap == [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultMetadataProvider.java

            private SimpleComponentMetadataBuilder(ModuleVersionIdentifier id, ImmutableAttributesFactory attributesFactory) {
                this.id = id;
                this.attributes = attributesFactory.mutable();
                this.attributes.attribute(ProjectInternal.STATUS_ATTRIBUTE, MavenVersionUtils.inferStatusFromEffectiveVersion(id.getVersion()));
            }
    
            @Override
            public void setStatus(String status) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            'validation:property-validation:nested-type-unsupported' : 'Nested type unsupported',
            'validation:property-validation:mutable-type-with-setter' : 'Mutable type with setter',
            'validation:property-validation:private-getter-must-not-be-annotated' : 'Private property with wrong annotation',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/provider/HasMultipleValues.java

         *
         * <p>Note that although the value of the property will not change, the resulting collection may contain mutable objects. Calling this method does not guarantee that the value will become immutable.</p>
         *
         * @since 5.0
         */
        @Override
        void finalizeValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/resolver/DefaultResolutionOutputs.java

            private boolean lenient;
            private boolean reselectVariants;
    
            public DefaultArtifactViewConfiguration(ImmutableAttributesFactory attributesFactory) {
                this.viewAttributes = attributesFactory.mutable();
            }
    
            @Override
            public AttributeContainer getAttributes() {
                return viewAttributes;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    * link:{javadocPath}/org/gradle/api/file/DirectoryProperty.html#getAsFileTree--[DirectoryProperty.getAsFileTree()]
    
    === Property Files API Reference
    
    Use these types for _mutable_ values:
    
    link:{javadocPath}/org/gradle/api/file/RegularFileProperty.html[RegularFileProperty]:: File on disk
    Factories;;
    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. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolution/KaCall.kt

    }
    
    public interface KaCompoundAccessCall {
        /**
         * The type of this compound access.
         */
        public val compoundAccess: KaCompoundAccess
    }
    
    /**
     * A compound access of a mutable variable.  For example
     * ```
     * fun test() {
     *   var i = 0
     *   i += 1
     *   // partiallyAppliedSymbol: {
     *   //   symbol: `i`
     *   //   dispatchReceiver: null
     *   //   extensionReceiver: null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollection.java

            boolean isEmpty();
    
            /**
             * Returns a shallow copy of this value collector, to avoid sharing mutable data.
             */
            ValueCollector isolated();
        }
    
        private static class EmptyCollector implements ValueCollector {
            @Override
            public boolean isEmpty() {
                return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/provider/MapProperty.java

         *
         * <p>Note that although the value of the property will not change, the resulting map may contain mutable objects. Calling this method does not guarantee that the value will become immutable.</p>
         */
        @Override
        void finalizeValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:25:03 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top