Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 227 for reserialized (0.25 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_deserialization.cc

      auto deserialized = DeserializeStablehlo(context, op);
      if (!deserialized.ok()) {
        return op.emitOpError()
               << "failed to deserialize StableHLO module from XlaCallModule: "
               << deserialized.status().ToString();
      }
      OwningOpRef<ModuleOp> stablehlo_module = *std::move(deserialized);
    
      CopyStablehloModuleAttrs(*stablehlo_module, op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/isolation/IsolatedActionSerializerTest.kt

            deserialize(serialize(action))
    
        private
        fun <T> serialize(action: TestableIsolatedAction<T>) =
            IsolatedActionSerializer(ownerGradle(), DefaultBeanStateWriterLookup(), isolatedActionCodecsFactory())
                .serialize(action)
    
        private
        fun <T> deserialize(serialized: SerializedIsolatedActionGraph<TestableIsolatedAction<T>>) =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/PlaceholderAssertionError.java

    package org.gradle.internal.serialize;
    
    import org.gradle.internal.UncheckedException;
    
    import javax.annotation.Nullable;
    
    /**
     * A {@code PlaceholderException} is used when an assertion error cannot be serialized or deserialized.
     */
    public class PlaceholderAssertionError extends AssertionError implements PlaceholderExceptionSupport {
        private final String exceptionClassName;
        private final Throwable getMessageException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/daemon/DaemonGroovyCompiler.java

             * value is serialized and deserialized, so the correct class is returned. In the latter case, the result
             * is returned directly, which means it is not an instance of the expected class unless we allow that class
             * to leak through here. Should be fixed in the worker API, so that it always serializes/deserializes results.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/IsolatableSerializerRegistryTest.groovy

            and:
            Isolatable<?>[] newIsolatables = deserialize()
    
            then:
            newIsolatables[0].isolate() == properties
        }
    
        def "can serialize/deserialize isolated Array"() {
            String[] array = ["foo", "bar"]
    
            when:
            serialize(isolatableFactory.isolate(array))
    
            and:
            Isolatable<?>[] newIsolatables = deserialize()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/PlaceholderException.java

    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.scan.UsedByScanPlugin;
    
    import javax.annotation.Nullable;
    
    /**
     * A {@code PlaceholderException} is used when an exception cannot be serialized or deserialized.
     */
    @UsedByScanPlugin
    public class PlaceholderException extends RuntimeException implements PlaceholderExceptionSupport {
        private final String exceptionClassName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/isolation/IsolatedActionSerializer.kt

    import java.util.IdentityHashMap
    
    
    /**
     * Serialized state of an object graph containing one or more [IsolatedAction]s.
     *
     * @param G type of the root object stored in [graph]
     */
    internal
    class SerializedIsolatedActionGraph<G>(
        /**
         * The serialized graph.
         */
        val graph: ByteArray,
    
        /**
         * External references that are not serialized directly as part of the [graph].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionInternal.java

         */
        TreeFormatter describeContents(TreeFormatter formatter);
    
        /**
         * Calculates the execution time value of this file collection. The resulting value is serialized to the configuration cache
         * and deserialized at execution time, utilizing the logic encapsulated within the value.
         */
        default Optional<FileCollectionExecutionTimeValue> calculateExecutionTimeValue() {
            return Optional.empty();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 14:55:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcProblemReportingIntegrationTest.groovy

                withProblem("Build file 'build.gradle': line 3: registration of listener on 'Gradle.addListener' is unsupported")
                withProblem("Task `:broken` of type `org.gradle.api.DefaultTask`: cannot deserialize object of type 'org.gradle.api.Project' as these are not supported with the configuration cache.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/SerializationTest.kt

        private
        val pluginsSchema: AnalysisSchema = schema
    
        @Test
        fun `schema is serializable`() {
            val serialized = SchemaSerialization.schemaToJsonString(pluginsSchema)
            val deserialized = SchemaSerialization.schemaFromJsonString(serialized)
    
            val result = deserialized.resolve(
                """
                plugins {
                    id("test")
                }
                """.trimIndent()
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:27 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top