Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 452 for mutable_s (0.16 sec)

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

        private boolean closed;
        private final boolean mutable;
        private final boolean canReadChildren;
    
        public DefaultModelViewState(ModelPath path, ModelType<?> type, ModelRuleDescriptor ruleDescriptor, boolean mutable, boolean canReadChildren) {
            this.path = path;
            this.type = type;
            this.ruleDescriptor = ruleDescriptor;
            this.mutable = mutable;
            this.canReadChildren = canReadChildren;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/util/internal/WrapUtil.java

     */
    public class WrapUtil {
        /**
         * Wraps the given items in a mutable unordered set.
         */
        @SafeVarargs
        @SuppressWarnings("varargs")
        public static <T> Set<T> toSet(T... items) {
            Set<T> coll = new HashSet<T>();
            Collections.addAll(coll, items);
            return coll;
        }
    
        /**
         * Wraps the given items in a mutable domain object set.
         */
        @SafeVarargs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:11 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/AttributeDesugaring.java

                        mutable.attribute(desugared, value);
                    } else {
                        desugared = Cast.uncheckedCast(Attribute.of(attribute.getName(), String.class));
                        mutable.attribute(desugared, value.toString());
                    }
                }
                return mutable.asImmutable();
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/stored.rules

    methods\ that\ are\ mutable\ public\ API\ properties\ and\ do\ not\ have\ raw\ return\ type\ org.gradle.api.resources.TextResource\ and\ do\ not\ have\ raw\ return\ type\ assignable\ to\ org.gradle.api.file.FileCollection\ should\ have\ return\ type\ Provider=public-api-mutable-properties.txt
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/attributes/ImmutableAttributesFactory.java

    public interface ImmutableAttributesFactory {
        /**
         * Returns an empty mutable attribute container.
         */
        AttributeContainerInternal mutable();
    
        /**
         * Returns an empty mutable attribute container with the given fallback.
         */
        AttributeContainerInternal mutable(AttributeContainerInternal fallback);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 27 04:00:15 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/platform/base/DependencySpecContainer.java

         *
         * @param path the project path
         *
         * @return a mutable dependency, added to this container
         */
        ProjectDependencySpecBuilder project(String path);
    
        /**
         * Defines a new dependency, based on a library name. The returned dependency can be mutated.
         *
         * @param name of the library
         *
         * @return a mutable dependency, added to this container
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantAttributesRules.java

            AttributeContainerInternal mutable = attributesFactory.mutable(attributes);
            for (VariantMetadataRules.VariantAction<? super AttributeContainer> action : actions) {
                action.maybeExecute(variant, mutable);
            }
            return mutable.asImmutable();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/cluster_tls_test.go

    			opts := &buildClusterOpts{
    				mutable: newClusterWrapper(&cluster.Cluster{
    					ClusterDiscoveryType: &cluster.Cluster_Type{Type: test.discoveryType},
    				}),
    				mesh: push.Mesh,
    			}
    			if test.h2 {
    				setH2Options(opts.mutable)
    			}
    			cb.applyUpstreamTLSSettings(opts, test.tls, test.mtlsCtx)
    
    			if test.expectTransportSocket && opts.mutable.cluster.TransportSocket == nil ||
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/ModelContainer.java

    import javax.annotation.Nullable;
    import java.util.function.Consumer;
    import java.util.function.Function;
    
    /**
     * Encapsulates some mutable model, and provides synchronized access to the model.
     */
    public interface ModelContainer<T> {
    
        /**
         * Runs the given function to calculate a value from the public mutable model. Applies best effort synchronization to prevent concurrent access to a particular project from multiple threads.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

            while (it.hasNext() && !mutable.isEmpty()) {
                String name = it.next().getName();
                mutable.applicationClasspath.removeIf(module -> module.getJarFilePattern().matcher(name).matches());
                mutable.applicationModulepath.removeIf(module -> module.getJarFilePattern().matcher(name).matches());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top