Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 514 for reserialized (0.5 sec)

  1. staging/src/k8s.io/apimachinery/pkg/runtime/helper.go

    	if gvk != oldGVK {
    		kind.SetGroupVersionKind(gvk)
    		defer kind.SetGroupVersionKind(oldGVK)
    	}
    
    	return e.Encoder.Encode(obj, stream)
    }
    
    // WithoutVersionDecoder clears the group version kind of a deserialized object.
    type WithoutVersionDecoder struct {
    	Decoder
    }
    
    // Decode does not do conversion. It removes the gvk during deserialization.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 22:54:34 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest.groovy

            when:
            def deserializedMetadata = deserialize(bytes).asImmutable()
            def originMetadata = metadata.asImmutable()
    
            then:
            deserializedMetadata == originMetadata
    
            where:
            sample << sampleFiles()
    
        }
    
        private MutableModuleComponentResolveMetadata deserialize(byte[] serializedForm) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/DefaultActionExecutionSpecFactory.java

        }
    
        private Isolatable<?> deserialize(byte[] bytes) {
            ByteArrayInputStream inputStream = new ByteArrayInputStream(bytes);
            KryoBackedDecoder decoder = new KryoBackedDecoder(inputStream);
            try {
                return serializerRegistry.readIsolatable(decoder);
            } catch (Exception e) {
                throw new WorkSerializationException("Could not deserialize unit of work.", e);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:50 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/pywrap_quantize_model.cc

          `dst_saved_model_path`.
    
          The user should pass a serialized `QuantizationOptions` for the
          `quantization_options_serialized` argument, and a signature key ->
          serialized `SignatureDef` mapping for the `signature_def_map_serialized`
          argument.
    
          `representative_dataset_file_map_serialized` is a signature key ->
          `RepresentativeDatasetFile` (serialized) mapping for running the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 12K bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/FileBackedObjectHolder.java

            this.fileAccess = fileAccess;
            this.serializer = serializer;
            this.chmod = chmod;
        }
    
        @Override
        public T get() {
            return fileAccess.readFile((Supplier<T>) this::deserialize);
        }
    
        @Override
        public void set(final T newValue) {
            fileAccess.writeFile(() -> serialize(newValue));
        }
    
        @Override
        public T update(final UpdateAction<T> updateAction) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Message.java

         * reason) will be replaced by a {@link PlaceholderException}.
         *
         * @param inputSteam stream to read the object from
         * @param classLoader loader used to load exception classes
         * @return the de-serialized object
         */
    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/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/oldresult/TransientConfigurationResultsBuilder.java

            synchronized (lock) {
                return cache.load(() -> {
                    try {
                        return binaryData.read(decoder -> deserialize(decoder, graphResults, artifactResults, buildOperationProcessor));
                    } finally {
                        try {
                            binaryData.close();
                        } catch (IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_distributed_test.cc

      TFE_Context* ctx = TFE_NewContext(opts, status);
      EXPECT_EQ(TF_GetCode(status), TF_OK) << TF_Message(status);
      TFE_DeleteContextOptions(opts);
    
      TFE_ContextSetServerDef(ctx, 0, serialized.data(), serialized.size(), status);
      EXPECT_EQ(TF_GetCode(status), TF_OK) << TF_Message(status);
    
      const char task0_name[] = "/job:localhost/replica:0/task:0/device:CPU:0";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ClientProvidedBuildActionRunner.java

                return Result.nothing();
            }
    
            ClientProvidedBuildAction clientProvidedBuildAction = (ClientProvidedBuildAction) action;
    
            Object clientAction = payloadSerializer.deserialize(clientProvidedBuildAction.getAction());
    
            return runClientAction(new ClientActionImpl(clientAction, action), buildController);
        }
    
        private static class ClientActionImpl implements ClientAction {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. 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)
Back to top