Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 681 for reserialized (0.17 sec)

  1. cmd/data-usage_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	t.Log("serialized size:", buf.Len(), "bytes")
    	var got dataUsageCache
    	err = got.deserialize(&buf)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if got.Info.LastUpdate.IsZero() {
    		t.Error("lastupdate not set")
    	}
    
    	if !want.Info.LastUpdate.Equal(got.Info.LastUpdate) {
    		t.Fatalf("deserialize LastUpdate mismatch\nwant: %+v\ngot:  %+v", want, got)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 27 15:10:40 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentResultSerializerTest.groovy

                selectedVariants >> [v1, v2]
                repositoryName >> 'repoName'
            }
    
            when:
            def serialized = serialize(component)
            def result = deserialize(serialized)
    
            then:
            result.id == componentIdentifier
            result.selectionReason == ComponentSelectionReasons.requested()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/IsolatableSerializerRegistry.java

             */
            public abstract byte getSerializerIndex();
    
            protected abstract void serialize(Encoder encoder, T value) throws Exception;
    
            protected abstract T deserialize(Decoder decoder) throws Exception;
    
            @Override
            public final void write(Encoder encoder, T value) throws Exception {
                encoder.writeByte(getSerializerIndex());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSymbolContainingDeclarationProvider.kt

            withValidityAssertion { analysisSession.containingDeclarationProvider.getContainingFileSymbol(this) }
    
        /**
         * Returns containing JVM class name for [KaCallableSymbol]
         *
         *   even for deserialized callables! (which is useful to look up the containing facade in [PsiElement])
         *   for regular, non-local callables from source, it is a mere conversion of [ClassId] inside [CallableId]
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/core/tf_concrete_function_test_protos.h

    namespace testing {
    
    // Returns a StructuredValue corresponding to the serialized InputSignature of a
    // tf.function with 0 inputs
    StructuredValue ZeroArgInputSignature();
    
    // Returns a StructuredValue corresponding to the serialized InputSignature of a
    // tf.function with 1 input
    StructuredValue SingleArgInputSignature();
    
    // Returns a StructuredValue corresponding to the serialized InputSignature of a
    // tf.function with 3 inputs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 21:44:45 UTC 2022
    - 2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/stablehlo/stablehlo_test.py

          }
        }
      """
      target = stablehlo.get_current_version()
      artifact = stablehlo.serialize_portable_artifact(assembly, target)
      deserialized = stablehlo.deserialize_portable_artifact(artifact)
      rountrip = stablehlo.serialize_portable_artifact(deserialized, target)
      assert artifact == rountrip
    
    
    if __name__ == "__main__":
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 16 19:48:21 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/JdkBackedImmutableBiMap.java

     * limitations under the License.
     */
    package com.google.common.collect;
    
    
    /**
     * GWT emulation of {@link JdkBackedImmutableBiMap}. Never used, but must exist so that the client
     * is willing to deserialize maps that were this type on the server.
     */
    @ElementTypesAreNonnullByDefault
    class JdkBackedImmutableBiMap<K, V> extends RegularImmutableBiMap<K, V> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 23 18:43:40 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_cluster_test.cc

      EXPECT_EQ(tensorflow::unwrap(var_handle0)->DeviceName(&status2), dev0_name);
    
      // Rename local device
      // This server def has the task index set to 0.
      string serialized = server_def.SerializeAsString();
      TFE_ContextSetServerDef(ctx, 0, serialized.data(), serialized.size(), status);
      EXPECT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
    
      const string dev1_name =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 10:03:59 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  9. pkg/apis/autoscaling/v2beta2/conversion.go

    	if err := autoConvert_autoscaling_HorizontalPodAutoscaler_To_v2beta2_HorizontalPodAutoscaler(in, out, s); err != nil {
    		return err
    	}
    	// v2beta2 round-trips to internal without any serialized annotations, make sure any from other versions don't get serialized
    	out.Annotations, _ = autoscaling.DropRoundTripHorizontalPodAutoscalerAnnotations(out.Annotations)
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 08 15:16:15 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/README.md

    and to round-trip back to serialized form with identical bytes.
    Adding new fields or API types *is* expected to modify these fixtures. To regenerate them, run:
    
    ```sh
    UPDATE_COMPATIBILITY_FIXTURE_DATA=true go test k8s.io/api -run //HEAD
    ```
    
    ## Previous versions
    
    The vX.Y.Z subdirectories contain serialized API objects from previous releases:
    
    ```
    vX.Y.Z/
      <group>.<version>.<kind>.[json|yaml|pb]
    ```
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:52 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top