Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 361 for mutable_s (0.26 sec)

  1. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/ReflectiveEnvironment.java

                Map<String, String> result = (Map<String, String>)caseinsensitive.get(null);
                return result;
            } catch (Exception e) {
                throw new NativeIntegrationException("Unable to get mutable windows case insensitive environment map", e);
            }
        }
    
        private Map<String, String> getEnv() {
            try {
                Map<String, String> theUnmodifiableEnvironment = System.getenv();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:06:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/catalog/parser/TomlCatalogFileParserTest.groovy

                def mutable = new DefaultMutableVersionConstraint("")
                spec.delegate = mutable
                spec.resolveStrategy = Closure.DELEGATE_FIRST
                spec.call()
                def version = DefaultImmutableVersionConstraint.of(mutable)
                assert model.version == version
            }
        }
    
        @CompileStatic
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 05:41:21 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/isolation/Isolatable.java

     * An <b>isolated</b> instance has the same internal state as the original object on which this isolatable was based,
     * but it is guaranteed not to retain any references to mutable state from the original instance.
     * <p>
     * The primary reason to need such an isolated instance of an object is to ensure that work can be done in parallel using the instance without
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/api/IsolatedAction.java

     * Each isolated action is re-created through Configuration Cache serialization before it is applied to a target.
     * This approach ensures that sharing mutable state across targets via any means
     * (including {@link org.gradle.api.services.BuildService}, which are not supported) is prevented.
     * The absence of shared mutable state allows these actions to be safely executed in parallel as needed.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:15:52 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/aot/codegen_test.cc

      opts.gen_program_shape = true;
      tf2xla::Config config;
      tf2xla::Feed* feed = config.add_feed();
      feed->mutable_id()->set_node_name("feed0");
      feed->set_name("myfeed");
      feed = config.add_feed();
      feed->mutable_id()->set_node_name("feed1");
      tf2xla::Fetch* fetch = config.add_fetch();
      fetch->mutable_id()->set_node_name("fetch0");
      fetch->set_name("myfetch");
      tf2xla::Variable* variable = config.add_variable();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 01 02:13:40 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/execution/plan/ExecutionPlan.java

    import org.gradle.api.specs.Spec;
    
    import javax.annotation.concurrent.NotThreadSafe;
    import java.io.Closeable;
    import java.util.Collection;
    import java.util.function.Consumer;
    
    /**
     * Represents a mutable graph of dependent work items.
     *
     * <p>The methods of this interface are not thread safe.
     */
    @NotThreadSafe
    public interface ExecutionPlan extends Describable, Closeable {
        void addFilter(Spec<? super Task> filter);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top