Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 452 for mutable_s (0.17 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/FinalizableValue.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal;
    
    /**
     * Mutable value type for which mutation can be disabled at a certain point in time,
     * by calling the {@code disableFurtherMutations()} method.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 13 18:48:59 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/initialization/definition/InjectedPluginDependencies.java

     * @since 4.6
     */
    public interface InjectedPluginDependencies {
        /**
         * Add a dependency on the plugin with the given id.
         *
         * @param id the id of the plugin to depend on
         *
         * @return a mutable injected plugin dependency that can be used to further refine the dependency
         */
        InjectedPluginDependency id(String id);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 01 21:30:02 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  3. 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)
  4. guava/src/com/google/common/collect/Count.java

     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import com.google.common.annotations.GwtCompatible;
    import java.io.Serializable;
    import javax.annotation.CheckForNull;
    
    /**
     * A mutable value of type {@code int}, for multisets to use in tracking counts of values.
     *
     * @author Louis Wasserman
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    final class Count implements Serializable {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 05 00:40:25 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dependencies/DefaultMinimalDependency.java

            validateMutation();
        }
    
        @Override
        public void copyTo(AbstractExternalModuleDependency target) {
            super.copyTo(target);
        }
    
        // Intentionally changes to the mutable version.
        @Override
        public DefaultMutableMinimalDependency copy() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. 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)
  7. subprojects/core-api/src/main/java/org/gradle/api/provider/HasConfigurableValue.java

     * so while the value of the variable does not change, the value itself may still be mutable.</p>
     *
     * <p>When a task property has a value of this type, it will be implicitly finalized when the task starts execution, to prevent accidental changes to the task parameters as the task runs.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 16:10:02 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/file/RegularFileProperty.java

    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.provider.Provider;
    
    import javax.annotation.Nullable;
    import java.io.File;
    
    /**
     * Represents some configurable regular file location, whose value is mutable.
     *
     * <p>
     * You can create a {@link RegularFileProperty} using {@link ObjectFactory#fileProperty()}.
     * </p>
     *
     * <p><b>Note:</b> This interface is not intended for implementation by build script or plugin authors.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 10 18:00:11 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelElementNode.java

                modelView = getAdapter().asImmutable(type, this, ruleDescriptor);
            }
            if (modelView == null) {
                throw new IllegalStateException("Model element " + getPath() + " cannot be expressed as a mutable view of type " + type);
            }
            return modelView;
        }
    
        @Override
        public <T> T getPrivateData(Class<T> type) {
            return getPrivateData(ModelType.of(type));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildTreeModelController.java

    import org.gradle.tooling.provider.model.internal.ToolingModelScope;
    
    import java.util.List;
    import java.util.function.Supplier;
    
    public interface BuildTreeModelController {
        /**
         * Returns the mutable model, configuring if necessary.
         */
        GradleInternal getConfiguredModel();
    
        ToolingModelScope locateBuilderForDefaultTarget(String modelName, boolean param);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 14 11:45:23 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top