Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 452 for mutable_s (0.33 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/types/renderers/KtFlexibleTypeRenderer.kt

                            " ".separated(
                                { typeRenderer.annotationsRenderer.renderAnnotations(analysisSession, type, printer) },
                                { append(lower.classId.asFqNameString().replace("Mutable", "(Mutable)")) },
                            )
                            printCollectionIfNotEmpty(lower.typeArguments, prefix = "<", postfix = ">") { typeArgument ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/MutableModelNode.java

        /**
         * Creates a (potentially) mutable view over this node's value. When this node is not mutable, an immutable view is returned instead.
         *
         * Callers should try to {@link ModelView#close()} the returned view when it is done with, allowing any internal cleanup to occur.
         *
         * Throws if this node can't be expressed as a mutable view of the requested type.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/common/tfl_pass_config.h

      // Whether to enable TFLite variables or not, this will allow
      // mutable variables and produce ReadVariable/AssignVariable ops in TFLite.
      bool enable_tflite_variables = false;
      // Whether to disable the variable freezing pass or not.
      // By default we freeze all variables and disallow mutable variables. When
      // 'enable_tflite_variables' is true then we allow mutable variable only.
      bool disable_variable_freezing = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/freeze_global_tensors.cc

        if (global_tensor.getIsMutable()) {
          if (allow_mutable_tensors) continue;
          global_tensor.emitError()
              << "is not immutable, try removing mutable variables in your model "
                 "since mutable variables are currently not supported through "
                 "this converter";
          return signalPassFailure();
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  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/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)
  10. 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)
Back to top