Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 216 for reserialized (0.32 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/context/DefaultDaemonContext.java

    import org.gradle.launcher.daemon.configuration.DaemonParameters;
    
    import java.io.File;
    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.List;
    
    /**
     * Keep in mind that this is a serialized value object.
     */
    public class DefaultDaemonContext implements DaemonContext {
    
        public static final org.gradle.internal.serialize.Serializer<DefaultDaemonContext> SERIALIZER = new Serializer();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. docs/en/docs/how-to/async-sql-encode-databases.md

    * Notes to be returned (`Note`).
    
    ```Python hl_lines="31-33  36-39"
    {!../../../docs_src/async_sql_databases/tutorial001.py!}
    ```
    
    By creating these Pydantic models, the input data will be validated, serialized (converted), and annotated (documented).
    
    So, you will be able to see it all in the interactive API docs.
    
    ## Connect and disconnect
    
    * Create your `FastAPI` application.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/common/tfl_pass_config.h

      // has a single use.
      bool guarantee_all_funcs_one_use = false;
      // Whether to enable the hlo/stablehlo to tf conversion. This also supports
      // the case where a saved model contains both TF module and serialized
      // StableHLO module.
      bool enable_hlo_to_tf_conversion = false;
      // Whether to disable the direct hlo/stablehlo to Tensorflow Lite conversion.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:05:30 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

                stablehlo_dialect.register_dialect(context)
                # Serialization in VHLO dialect.
                serialized = node_def.attr.get('module').s
                # MLIR bytecode matching StableHLO version.
                mlir_bytecode = stablehlo.deserialize_portable_artifact(serialized)
                stablehlo_module = ir.Module.parse(mlir_bytecode, context=context)
                return str(stablehlo_module)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. fastapi/applications.py

                        not include that field, the JSON sent to the client would not have
                        that `password`.
                    * Validation: whatever you return will be serialized with the
                        `response_model`, converting any data as necessary to generate the
                        corresponding JSON. But if the data in the object returned is not
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

        }
    
        private static class ViewGraphDetails implements Serializable {
            // Transient, don't serialize all the views that happen to have been visited, recreate them when visited via the deserialized view
            private transient WeakIdentityHashMap<Object, Map<ViewKey, WeakReference<Object>>> views = new WeakIdentityHashMap<>();
            private final TargetTypeProvider typeProvider;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/DefaultPayloadClassLoaderRegistry.java

     * A {@link PayloadClassLoaderRegistry} that maps classes loaded by a set of ClassLoaders that it manages. For ClassLoaders owned by this JVM, inspects the ClassLoader to determine a ClassLoader spec to send across to the peer JVM. For classes serialized from the peer, maintains a set of cached ClassLoaders created using the ClassLoader specs received from the peer.
     */
    @ThreadSafe
    public class DefaultPayloadClassLoaderRegistry implements PayloadClassLoaderRegistry {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 00:13:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/ImmutableSortedMultisetTest.java

      }
    
      public void testSerialization_empty() {
        Collection<String> c = ImmutableSortedMultiset.of();
        assertSame(c, SerializableTester.reserialize(c));
      }
    
      public void testSerialization_multiple() {
        Collection<String> c = ImmutableSortedMultiset.of("a", "b", "a");
        Collection<String> copy = SerializableTester.reserializeAndAssert(c);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. pkg/kubelet/images/image_manager_test.go

    }
    
    func (m *mockPodPullingTimeRecorder) reset() {
    	m.Lock()
    	defer m.Unlock()
    	m.startedPullingRecorded = false
    	m.finishedPullingRecorded = false
    }
    
    func pullerTestEnv(t *testing.T, c pullerTestCase, serialized bool, maxParallelImagePulls *int32) (puller ImageManager, fakeClock *testingclock.FakeClock, fakeRuntime *ctest.FakeRuntime, container *v1.Container, fakePodPullingTimeRecorder *mockPodPullingTimeRecorder) {
    	container = &v1.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Combinators.kt

    
    /**
     * Workaround for serializing JDK types with complex/opaque state on Java 17+.
     *
     * **IMPORTANT** Should be avoided for composite/container types as all components would be serialized
     * using Java serialization.
     */
    fun WriteContext.encodeUsingJavaSerialization(value: Any) {
        ObjectOutputStream(outputStream).useToRun {
            writeObject(value)
        }
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top