Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 232 for mutable_s (0.19 sec)

  1. tensorflow/compiler/mlir/lite/schema/BUILD

    )
    
    # Generic schema for flatbuffer converter (but with mutable makes bigger).
    flatbuffer_cc_library(
        name = "schema_fbs_with_mutable",
        srcs = ["schema.fbs"],
        compatible_with = get_compatible_with_portable(),
        flatc_args = [
            "--gen-mutable",
            "--gen-object-api",
        ],
        out_prefix = "mutable/",
    )
    
    # Generic schema for inference on device (but with reflections makes bigger).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Jun 02 08:36:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. hack/verify-test-featuregates.sh

    # This script checks whether mutable global feature gate is invocated correctly
    # in `*_test.go` files.
    # Usage: `hack/verify-test-featuregates.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    cd "${KUBE_ROOT}"
    
    rc=0
    
    # find test files accessing the mutable global feature gate or interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedModelValue.java

         * used as the new value.
         *
         * <p>The calling thread must own the mutable state from which the value is calculated (via {@link ModelContainer#fromMutableState(Function)}). At most a single thread
         * will run the update function at a given time. This additional guarantee is because the mutable state lock may be released
         * while the function is running or while waiting to access the value.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ScalarCollectionNodeInitializerExtractionStrategy.java

                    @Override
                    protected ScalarCollectionModelView<E, List<E>> toView(MutableModelNode modelNode, ModelRuleDescriptor ruleDescriptor, boolean mutable) {
                        return new ListModelView<E>(modelNode.getPath(), elementType, modelNode, ruleDescriptor, readOnly, mutable);
                    }
                };
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:15:09 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyCollector.java

            return (D) dependencyFactory.createDependency(dependency);
        }
    
        private <D extends Dependency> D applyConfiguration(D dependency, @Nullable Action<? super D> config) {
            D mutable = ensureMutable(dependency);
            if (config != null) {
                config.execute(mutable);
            }
    
            if (mutable instanceof AbstractModuleDependency) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:10:09 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/operations/BuildOperationExecutor.java

         * build operation thread pool. Operations may execute concurrently. Blocks until all operations are complete.
         *
         * <p>Actions are not permitted to access any mutable project state. Generally, this is preferred.</p>
         */
        <O extends RunnableBuildOperation> void runAll(Action<BuildOperationQueue<O>> schedulingAction);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. api/maven-api-spi/src/main/java/org/apache/maven/api/spi/PropertyContributor.java

     * @since 4.0.0
     */
    @Experimental
    @Consumer
    public interface PropertyContributor extends SpiService {
        /**
         * Invoked just before session is created with a mutable map that carries collected user properties so far.
         *
         * @param userProperties The mutable user properties, never {@code null}.
         */
        void contribute(Map<String, String> userProperties);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top