Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 652 for reserialized (0.34 sec)

  1. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/InterHubMessageSerializerTest.groovy

            def channelId = new ChannelIdentifier("channel name")
            def message = new ChannelMessage(channelId, "payload")
    
            when:
            def serialized = serialize(message)
            def result = deserialize(serialized)
    
            then:
            result instanceof ChannelMessage
            result.channel == channelId
            result.payload == "payload"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/compile_mlir_util/serialized-mlir-module-str-attr.mlir

    // Test simple serialized computation consisting of a function named `main`
    // with a tf.Identity op forwarding the function single argument to the function
    // single result.
    
    // CHECK-LABEL: module
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 09 13:27:00 UTC 2022
    - 998 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/xla_call_module_attrs.h

    // Every stablehlo function deserialized from XlaCallModule has this attribute.
    constexpr llvm::StringRef kFromXlaCallModuleAttrName = "_from_xla_call_module";
    
    // Name of `tf.XlaCallModule`'s dictionary attribute for keeping the
    // deserialized stablehlo module's attributes.
    constexpr llvm::StringRef kStablehloModuleAttrsAttrName =
        "_stablehlo_module_attrs";
    
    }  // namespace TF
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 22:08:10 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/ClientProvidedBuildActionRunnerTest.groovy

            1 * buildController.fromBuildModel(false, _) >> { Boolean b, BuildTreeModelAction modelAction -> modelAction.fromBuildModel(modelController) }
            1 * internalAction.execute(_) >> model
            1 * payloadSerializer.serialize(model) >> serialized
        }
    
        def "can run action and reports failure"() {
            given:
            def failure = new RuntimeException()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ModelProcessor.java

         * returns.
         *
         * @param request The reader request to deserialize the model, must not be {@code null}.
         * @return The deserialized model, never {@code null}.
         * @throws IOException If the model could not be deserialized.
         * @throws XmlReaderException If the input format could not be parsed.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. architecture/standards/0002-avoid-using-java-serialization.md

    ## Decision
    
    We do not use Java serialization.
    Instead, we use custom serialization where we explicitly describe how data objects should be serialized and deserialized.
    
    For internal purposes, we use binary formats for their brevity.
    We use the `Serializer` abstraction to separate the actual implementation of serialization from its uses.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 22:32:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/SerializeMap.java

     */
    
    package org.gradle.tooling.internal.provider.serialization;
    
    import java.util.Map;
    
    public interface SerializeMap {
        /**
         * Visits a class to be serialized, returning the id of the deserialize ClassLoader to associate this class with.
         * The id is unique only for this serialization, and is used as the key for the map built by {@link #collectClassLoaderDefinitions(Map)}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/XcodeprojSerializer.java

                }
            }
    
            // Save the existing object being deserialized.
            NSDictionary stack = currentObject;
    
            currentObject = new NSDictionary();
            currentObject.put("isa", obj.isa());
            obj.serializeInto(this);
            objects.put(obj.getGlobalID(), currentObject);
    
            // Restore the existing object being deserialized.
            currentObject = stack;
            return obj.getGlobalID();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top