Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 361 for mutable_s (0.21 sec)

  1. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/internal/DefaultSwiftLibraryTest.groovy

                new DefaultSoftwareComponentVariant("test", AttributeTestUtil.attributesFactory().mutable()),
                new DefaultSoftwareComponentVariant("test", AttributeTestUtil.attributesFactory().mutable())
            )
        }
    
        private TargetMachine targetMachine(String os, String arch) {
            def objectFactory = TestUtil.objectFactory()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/AbstractDependenciesMetadataAdapter.java

                // most cases. We could create an empty attribute set directly in the AbstractDependencyImpl,
                // but then it wouldn't be mutable. Therefore we proceed with "late injection" of the attributes
                ((AbstractDependencyImpl<?>) dependencyMetadata).setAttributes(attributesFactory.mutable());
            }
    
            T adapted = adapt(dependencyMetadata);
            if (configureAction != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_traffic_policy.go

    		connectionPool = &networking.ConnectionPoolSettings{}
    	}
    	cb.applyConnectionPool(opts.mesh, opts.mutable, connectionPool)
    	if opts.direction != model.TrafficDirectionInbound {
    		cb.applyH2Upgrade(opts.mutable, opts.port, opts.mesh, connectionPool)
    		applyOutlierDetection(opts.mutable.cluster, outlierDetection)
    		applyLoadBalancer(opts.mutable.cluster, loadBalancer, opts.port, cb.locality, cb.proxyLabels, opts.mesh)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ScalarCollectionModelView.java

            this.path = path;
            this.type = type;
            this.elementType = elementType;
            this.modelNode = modelNode;
            this.overwritable = overwritable;
            this.state = new DefaultModelViewState(path, type, descriptor, mutable, false);
        }
    
        @Override
        public ModelPath getPath() {
            return path;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelViewFactory.java

    import org.gradle.model.internal.core.rule.describe.ModelRuleDescriptor;
    
    public interface ModelViewFactory<M> {
        ModelView<M> toView(MutableModelNode modelNode, ModelRuleDescriptor ruleDescriptor, boolean mutable);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 879 bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/build/BuildState.java

        /**
         * Have the projects been loaded, ie has {@link #ensureProjectsLoaded()} already completed for this build?
         */
        boolean isProjectsLoaded();
    
        /**
         * Has the mutable model for projects been created yet?
         *
         * @see ProjectState#isCreated()
         */
        boolean isProjectsCreated();
    
        /**
         * Ensures all projects in this build are configured, if not already done.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 17:48:01 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/AttributeSelectionUtilsTest.groovy

        private ImmutableAttributesFactory attributesFactory = AttributeTestUtil.attributesFactory()
        private List<ImmutableAttributes> candidates = []
        private AttributeContainerInternal requested = attributesFactory.mutable()
    
        private List<Attribute<?>> extraAttributes
    
        def "collects extra attributes, single candidate"() {
            def attr1 = Attribute.of("foo", String)
            def attr2 = Attribute.of("bar", String)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model_ops.td

        a `tf_saved_model.exported_names` attribute.
    
        The `value` attribute contains the tensor's value (or initial value, in the
        case it is mutable).
    
        The `type` attribute contains the tensor's type, which for the case of
        mutable tensors might be more general than just the fixed static shape of
        the `value` attribute. For example, a global tensor might be unranked such
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/management/DefaultDependencyResolutionManagement.java

        public void preventFromFurtherMutation() {
            this.mutable = false;
            NamedDomainObjectList<ArtifactRepository> repositoryHandler = getRepositories();
            repositoryHandler.whenObjectAdded(this::mutationDisallowed);
            repositoryHandler.whenObjectRemoved(this::mutationDisallowed);
        }
    
        private void assertMutable() {
            if (!mutable) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/Dimensions.java

                        String variantName = StringUtils.uncapitalize(String.join("", variantNameToken));
    
                        AttributeContainer runtimeAttributes = attributesFactory.mutable();
                        runtimeAttributes.attribute(Usage.USAGE_ATTRIBUTE, runtimeUsage);
                        addCommonAttributes(buildType, targetMachine, runtimeAttributes);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
Back to top