Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 100 for mutable_s (0.18 sec)

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

     * A factory for {@link CalculatedValue}.
     */
    @ServiceScope(Scope.BuildSession.class)
    public interface CalculatedValueFactory {
        /**
         * Creates a calculated value that has no dependencies and that does not access any mutable model state.
         */
        <T> CalculatedValue<T> create(DisplayName displayName, Supplier<? extends T> supplier);
    
        /**
         * A convenience to create a calculated value that has already been produced.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PropertyDelegate.kt

    
    /**
     * Provides efficient access to a property.
     */
    interface PropertyDelegate {
        operator fun <T> getValue(receiver: Any?, property: KProperty<*>): T
    }
    
    
    /**
     * Provides efficient access to a mutable dynamic property.
     */
    interface MutablePropertyDelegate : PropertyDelegate {
        operator fun <T> setValue(receiver: Any?, property: KProperty<*>, value: T)
    }
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionInternal.java

        /**
         * Returns a copy of this collection, with the given collection replaced with the value returned by the given supplier.
         *
         * This is used to deal with the case where a mutable collection may be added to itself. This is intended to become an error at some point.
         */
        FileCollectionInternal replace(FileCollectionInternal original, Supplier<FileCollectionInternal> supplier);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 14:55:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow/analysis/resource_value_typed_analyzer.h

      // Note that these Value's are in general in different functions.
      DenseMap<Value, ResourceInfo> resource_infos_;
      // The set of regions we already discovered.
      DenseSet<Region*> discovered_;
      // Identifiers about mutable variables.
      // All variables are identified by (device, container, shared_name).
      DenseSet<std::tuple<llvm::StringRef, llvm::StringRef, llvm::StringRef>>
          mutable_variables_;
    };
    
    }  // namespace TF
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/analysis/resource_dataflow.h

      void print(raw_ostream &os) const;
    
      // The operation(s) which created the resource value.
      // IR constructs (i.e., GlobalTensorOp) are not const-correct.
      mutable DenseSet<Operation *> ops;
    };
    
    struct IsComposite {
      explicit IsComposite(Operation *op = nullptr);
      static IsComposite EntryState(MLIRContext *context);
      static IsComposite EntryState(Value value);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/ModuleComponentResolveMetadata.java

        /**
         * {@inheritDoc}
         */
        @Override
        ModuleComponentIdentifier getId();
    
        /**
         * Creates a mutable copy of this metadata.
         *
         * Note that this method can be expensive. Often it is more efficient to use a more specialised mutation method such as {@link #withSources(ModuleSources)} rather than this method.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/AttributeContainerCodecs.kt

    }
    
    
    private
    suspend fun ReadContext.readAttributesUsing(
        attributesFactory: ImmutableAttributesFactory,
        managedFactories: ManagedFactoryRegistry
    ): AttributeContainerInternal =
        attributesFactory.mutable().apply {
            readCollection {
                val attribute = readAttribute()
                val value = readAttributeValue(managedFactories)
                attribute(attribute, value)
            }
        }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top