Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for mutable_s (0.17 sec)

  1. 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)
  2. 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)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/AbstractMutableModuleComponentResolveMetadata.java

        private boolean externalVariant;
        private boolean isComponentMetadataRuleCachingEnabled;
        private List<String> statusScheme = DEFAULT_STATUS_SCHEME;
        private MutableModuleSources moduleSources;
        private /*Mutable*/AttributeContainerInternal componentLevelAttributes;
        private final AttributesSchemaInternal schema;
    
        private final VariantMetadataRules variantMetadataRules;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder.go

    	var lbEndpoints []*endpoint.LocalityLbEndpoints
    
    	isPassthrough := subset.GetTrafficPolicy().GetLoadBalancer().GetSimple() == networking.LoadBalancerSettings_PASSTHROUGH
    	clusterType := opts.mutable.cluster.GetType()
    	if isPassthrough {
    		clusterType = cluster.Cluster_ORIGINAL_DST
    	}
    	if !(isPassthrough || clusterType == cluster.Cluster_EDS) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_initializer_function_ops_to_main.cc

        return {};
      }
    
      GraphOp main_graph_op = GetGraphOpFromFuncOp(main_func_op);
    
      FetchOp main_fetch_op = main_graph_op.GetFetch();
      const absl::Cleanup erase_main_fetch_op = [main_fetch_op]() mutable {
        main_fetch_op.erase();
      };
    
      // TODO(b/245473863): Handle when assets are actually used in the body.
      IRMapping mapper = CloneSrcFuncArgumentsToMainFunc(src_func_op, main_func_op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:54:52 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueState.java

        }
    
        /**
         * Creates a new non-finalized state.
         *
         * @param copier when the value is mutable, a shallow-copying function should be provided to avoid
         * sharing of mutable state between effective values and convention values
         */
        public static <S> ValueState<S> newState(PropertyHost host, Function<S, S> copier) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/AbstractMutableModuleComponentResolveMetadataTest.groovy

            copy.status == "broken"
    
            def immutable2 = copy.asImmutable()
            immutable2.changing
            immutable2.missing
            immutable2.status == "broken"
        }
    
        def "can changes to mutable metadata does not affect copies"() {
    
            def metadata = createMetadata(id)
    
            given:
            metadata.changing = true
            metadata.missing = true
            metadata.status = "broken"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIvyPublishIntegrationTest.groovy

                }
    
                allprojects {
                    configurations { implementation }
                }
    
                def testAttributes = project.services.get(ImmutableAttributesFactory)
                     .mutable()
                     .attribute(Attribute.of('foo', String), 'value')
            """
        }
    
        def "can execute generateDescriptorFile"() {
            def configurationCache = newConfigurationCacheFixture()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top