Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 159 for mutable_s (0.24 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/properties_providers.adoc

    |`RegularFileProperty`
    |Configurable regular file location, whose value is mutable
    
    |`DirectoryProperty`
    |Configurable directory location, whose value is mutable
    
    |`ListProperty<T>`
    |List of elements of type `T`
    
    |`SetProperty<T>`
    |Set of elements of type `T`
    
    |`MapProperty<K, V>`
    |Map of `K` type keys with `V` type values
    
    |`ConfigurableFileCollection`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/jvm/internal/DefaultJvmPluginServicesTest.groovy

            ]
        }
    
        def "configures runtimeClasspath"() {
            def mutable = AttributeTestUtil.attributesFactory().mutable()
            def attrs = Mock(HasConfigurableAttributes)
    
            when:
            services.configureAsRuntimeClasspath(attrs)
    
            then:
            1 * attrs.getAttributes() >> mutable
            0 * _
            mutable.asMap() == [
                (CATEGORY_ATTRIBUTE): named(Category, LIBRARY),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  3. 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)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ScalarCollectionNodeInitializerExtractionStrategy.java

                    @Override
                    protected ScalarCollectionModelView<E, List<E>> toView(MutableModelNode modelNode, ModelRuleDescriptor ruleDescriptor, boolean mutable) {
                        return new ListModelView<E>(modelNode.getPath(), elementType, modelNode, ruleDescriptor, readOnly, mutable);
                    }
                };
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:15:09 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/VariantMetadataRules.java

            }
    
            @Override
            public void addAttributesAction(ImmutableAttributesFactory attributesFactory, VariantAction<? super AttributeContainer> action) {
                throw new UnsupportedOperationException("You are probably trying to add a variant attribute to something that wasn't supposed to be mutable");
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

                def mutable = new DefaultMutableVersionConstraint("")
                spec.delegate = mutable
                spec.resolveStrategy = Closure.DELEGATE_FIRST
                spec.call()
                def version = DefaultImmutableVersionConstraint.of(mutable)
                assert model.version == version
            }
        }
    
        @CompileStatic
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/codegen_test.cc

      opts.gen_program_shape = true;
      tf2xla::Config config;
      tf2xla::Feed* feed = config.add_feed();
      feed->mutable_id()->set_node_name("feed0");
      feed->set_name("myfeed");
      feed = config.add_feed();
      feed->mutable_id()->set_node_name("feed1");
      tf2xla::Fetch* fetch = config.add_fetch();
      fetch->mutable_id()->set_node_name("fetch0");
      fetch->set_name("myfetch");
      tf2xla::Variable* variable = config.add_variable();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 01 02:13:40 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. 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)
  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