Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 232 for mutable_s (0.18 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. 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)
  3. 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)
  4. 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)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CoupledProjectsListener.kt

    import org.gradle.internal.service.scopes.Scope
    
    
    @EventScope(Scope.Build::class)
    interface CoupledProjectsListener {
        /**
         * Notified when the build logic for a [referrer] project accesses the mutable state of some other [target] project.
         *
         * The [referrer] and [target] might represent the same project, and the listener implementation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/attributes/DefaultImmutableAttributesFactory.java

        }
    
        public int size() {
            return children.size();
        }
    
        @Override
        public DefaultMutableAttributeContainer mutable() {
            return new DefaultMutableAttributeContainer(this);
        }
    
        @Override
        public HierarchicalAttributeContainer mutable(AttributeContainerInternal fallback) {
            return join(fallback, new DefaultMutableAttributeContainer(this));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/gateway.go

    				mutable := &MutableGatewayListener{}
    				mutableopts[lname] = mutableListenerOpts{mutable: mutable, opts: opts, transport: transport}
    			} else {
    				mopts.opts.filterChainOpts = append(mopts.opts.filterChainOpts, opts.filterChainOpts...)
    			}
    		}
    	}
    	listeners := make([]*listener.Listener, 0)
    	for _, ml := range mutableopts {
    		ml.mutable.Listener = buildGatewayListener(*ml.opts, ml.transport)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelTransformerContextBuilder.java

        /**
         * This method is used to initialize the TransformerContext
         *
         * @param request the modelBuildingRequest
         * @param problems the problemCollector
         * @return the mutable transformerContext
         */
        ModelTransformerContext initialize(ModelBuilderRequest request, ModelProblemCollector problems);
    
        /**
         * The immutable transformerContext, can be used after the buildplan is finished.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. tensorflow/cc/client/client_session.cc

      static SessionOptions MakeDefaultSessionOptions(const string& target);
      Status MaybeExtendGraph() const;
    
      std::unique_ptr<Session> session_;
      std::shared_ptr<Graph> graph_;
    
      mutable mutex mu_;
      mutable int last_num_graph_nodes_ TF_GUARDED_BY(mu_) = 0;
    };
    
    ClientSession::ClientSession(const Scope& scope, const string& target)
        : ClientSession(scope, Impl::MakeDefaultSessionOptions(target)) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 09:04:10 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/MoreCollectors.java

        }
    
        void add(Object o) {
          checkNotNull(o);
          if (element == null) {
            this.element = o;
          } else if (extras.isEmpty()) {
            // Replace immutable empty list with mutable list.
            extras = new ArrayList<>(MAX_EXTRAS);
            extras.add(o);
          } else if (extras.size() < MAX_EXTRAS) {
            extras.add(o);
          } else {
            throw multiples(true);
          }
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top