Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 452 for mutable_s (0.15 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/cache/DefaultCacheConfigurationsTest.groovy

        def cacheConfigurations = TestUtil.objectFactory().newInstance(DefaultCacheConfigurations.class, Mock(LegacyCacheCleanupEnablement))
    
        def "cannot modify cache configurations via convenience method unless mutable"() {
            when:
            cacheConfigurations.createdResources.setRemoveUnusedEntriesAfterDays(2)
            cacheConfigurations.downloadedResources.setRemoveUnusedEntriesAfterDays(2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultVariantTransformRegistry.java

            final AttributeContainerInternal to;
    
            public RecordingRegistration(ImmutableAttributesFactory immutableAttributesFactory) {
                from = immutableAttributesFactory.mutable();
                to = immutableAttributesFactory.mutable();
            }
    
            public AttributeContainer getFrom() {
                return from;
            }
    
            public AttributeContainer getTo() {
                return to;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. android/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)
  4. 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)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/MutableVariantFilesMetadata.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.artifacts;
    
    import org.gradle.api.Action;
    
    /**
     * Mutable information about the files that belong to a variant.
     *
     * @since 6.0
     */
    public interface MutableVariantFilesMetadata {
    
        /**
         * Remove all files already defined for the variant.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 26 14:03:13 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/LazyLogger.java

        this.loggerName = ownerOfLogger.getName();
      }
    
      Logger get() {
        /*
         * We use double-checked locking. We could the try racy single-check idiom, but that would
         * depend on Logger not contain mutable state.
         *
         * We could use Suppliers.memoizingSupplier here, but I micro-optimized to this implementation
         * to avoid the extra class for the lambda (and maybe more for memoizingSupplier itself) and the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/LazyLogger.java

        this.loggerName = ownerOfLogger.getName();
      }
    
      Logger get() {
        /*
         * We use double-checked locking. We could the try racy single-check idiom, but that would
         * depend on Logger not contain mutable state.
         *
         * We could use Suppliers.memoizingSupplier here, but I micro-optimized to this implementation
         * to avoid the extra class for the lambda (and maybe more for memoizingSupplier itself) and the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_ops.mlir

        tf_saved_model.exported_names = ["some_const"],
        sym_name = "some_constant",
        type = tensor<1x64xf32>,
        value = dense<42.0> : tensor<1x64xf32>
      } : () -> ()
    
      // Representation for variables: mutable global tensor.
      // CHECK: tf_saved_model.global_tensor
      "tf_saved_model.global_tensor"() {
        is_mutable,
        tf_saved_model.exported_names = ["some_var", "some.other.name"],
        sym_name = "some_variable",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. 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)
  10. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/BuildCacheController.java

    import java.util.Optional;
    
    /**
     * High-level controller for build-cache operations; can load and store {@link CacheableEntity}s with a given {@link BuildCacheKey}.
     *
     * <p>Note that some implementations are mutable and may change behavior over the lifetime of a build.</p>
     */
    @ServiceScope(Scope.Gradle.class)
    public interface BuildCacheController extends Closeable {
    
        boolean isEnabled();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top