Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 681 for reserialized (0.19 sec)

  1. android/guava/src/com/google/common/collect/Serialization.java

      private Serialization() {}
    
      /**
       * Reads a count corresponding to a serialized map, multiset, or multimap. It returns the size of
       * a map serialized by {@link #writeMap(Map, ObjectOutputStream)}, the number of distinct elements
       * in a multiset serialized by {@link #writeMultiset(Multiset, ObjectOutputStream)}, or the number
       * of distinct keys in a multimap serialized by {@link #writeMultimap(Multimap,
       * ObjectOutputStream)}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/derived_attrs.mlir

    // CHECK-LABEL: func @derived_attrs
    func.func @derived_attrs(
      %serialized: tensor<?x!tf_type.string>,
      %names: tensor<0x!tf_type.string>,
      %sparse_keys: tensor<0x!tf_type.string>,
      %dense_keys: tensor<1x!tf_type.string>,
      %ragged_keys: tensor<0x!tf_type.string>,
      %dense_default: tensor<0xi64>) -> tensor<?xi64> {
    
      %dense_value =
        "tf.ParseExampleV2"(%serialized, %names, %sparse_keys, %dense_keys, %ragged_keys, %dense_default)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 959 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/legalize_tf_mlir.h

    #include "tensorflow/core/tpu/kernels/tpu_compile_op_support.h"
    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    namespace tf2xla {
    namespace internal {
    
    // Compiles a serialized MLIR module and returns a serialized MLIR module of the
    // result of running all the MLIR Bridge passes. If compile_to_xla_hlo is true
    // then those passes include all the Legalization to XLA HLO which is returned
    // in the compilation_result.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 20:29:34 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

       *
       * <ul>
       *   <li>If {@code C} explicitly implements {@link Object#equals}, the deserialized instance will
       *       be checked to be equal to the instance before serialization.
       *   <li>If {@code C} doesn't explicitly implement {@code equals} but instead inherits it from a
       *       superclass, no equality check is done on the deserialized instance because it's not clear
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/common/schemas.go

    		//
    		dyn := apiservercel.NewSimpleTypeWithMinSize("dyn", cel.DynType, nil, 1) // smallest value for a serialized x-kubernetes-int-or-string is 0
    		// handle x-kubernetes-int-or-string by returning the max length/min serialized size of the largest possible string
    		dyn.MaxElements = maxRequestSizeBytes - 2
    		return dyn
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 09 18:00:45 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ClientProvidedPhasedActionRunner.java

            }
    
            ClientProvidedPhasedAction clientProvidedPhasedAction = (ClientProvidedPhasedAction) action;
            InternalPhasedAction phasedAction = (InternalPhasedAction) payloadSerializer.deserialize(clientProvidedPhasedAction.getPhasedAction());
    
            return runClientAction(new ClientActionImpl(phasedAction, action), buildController);
        }
    
        private class ClientActionImpl implements ClientAction {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:56:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. maven-settings-builder/src/main/java/org/apache/maven/settings/io/SettingsWriter.java

         * @param settings The settings to serialize, must not be {@code null}.
         * @throws IOException If the settings could not be serialized.
         */
        void write(File output, Map<String, Object> options, Settings settings) throws IOException;
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/pjrt_device_compiler_client.h

          const XlaCompiler::CompilationResult& result) override;
    
      // Deserializes a serialized executable as produced by
      // PjRtExecutable::SerializeExecutable(). `serialized_executable` must have
      // been produced by a compiler of the same platform and version as this one.
      //
      // PjRt doesn't support AOT compilation yet. Loading a serialized executable
      // is currently only implemented for TfrtTpuPjrtClient and hence, this
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. src/cmd/internal/goobj/funcinfo.go

    import (
    	"bytes"
    	"encoding/binary"
    	"internal/abi"
    )
    
    // CUFileIndex is used to index the filenames that are stored in the
    // per-package/per-CU FileList.
    type CUFileIndex uint32
    
    // FuncInfo is serialized as a symbol (aux symbol). The symbol data is
    // the binary encoding of the struct below.
    type FuncInfo struct {
    	Args      uint32
    	Locals    uint32
    	FuncID    abi.FuncID
    	FuncFlag  abi.FuncFlag
    	StartLine int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:46 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. tensorflow/c/eager/c_api_remote_test.cc

      TFE_Context* ctx = TFE_NewContext(opts, status);
      EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TFE_DeleteContextOptions(opts);
    
      TFE_ContextSetServerDef(ctx, 0, serialized.data(), serialized.size(), status);
      EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
    
      TFE_TensorHandle* h0_task0 = TestMatrixTensorHandle(ctx);
      TFE_TensorHandle* h1_task0 = TestMatrixTensorHandle(ctx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 12 00:14:22 UTC 2020
    - 5.4K bytes
    - Viewed (0)
Back to top