Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 38 for reserialized (0.66 sec)

  1. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    ### `-tf-xla-call-module-deserialization`
    
    _Deserializes StableHLO functions embedded in `tf.XlaCallModule` to top level module_
    
    This pass deserializes the StableHLO bytecodes embedded in tf.XlaCallModule,
    then outlines the functions in the deserialized StableHLO module to the top
    level MLIR module, with function renamings to avoid naming conflicts.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  2. src/crypto/tls/common.go

    	// (for example with [Config.EncryptTicket]), or use the ticket as a handle
    	// to recover a previously stored state. It must use [ParseSessionState] to
    	// deserialize the session state.
    	//
    	// If UnwrapSession returns an error, the connection is terminated. If it
    	// returns (nil, nil), the session is ignored. crypto/tls may still choose
    	// not to resume the returned session.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

            },
            "kind": {
              "description": "kind is the serialized kind of the resource. It is normally CamelCase and singular. Custom resource instances will use this value as the `kind` attribute in API calls.",
              "type": "string",
              "default": ""
            },
            "listKind": {
              "description": "listKind is the serialized kind of the list for this resource. Defaults to \"`kind`List\".",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      op->replaceAllUsesWith(ctrl_op.getOutputs());
      op->erase();
      return ctrl_op.getOutputs();
    }
    
    // Build a FuncOp from a tflite SubGraph
    // The buffers are directly taken
    // from the deserialized flatbuffer as we do not have the type information to
    // interpret them until this point. The base_loc parameter is the location of
    // the flatbuffer as a whole (usually a file). If ordered_output_arrays is not
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/cache/CacheBuilder.java

     * weakValues}, or {@link #softValues softValues} perform periodic maintenance.
     *
     * <p>The caches produced by {@code CacheBuilder} are serializable, and the deserialized caches
     * retain all the configuration properties of the original cache. Note that the serialized form does
     * <i>not</i> include cache contents, but only configuration.
     *
     * <p>See the Guava User Guide article on <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    // memory available to scavenge.
    type scavengeIndex struct {
    	// chunks is a scavChunkData-per-chunk structure that indicates the presence of pages
    	// available for scavenging. Updates to the index are serialized by the pageAlloc lock.
    	//
    	// It tracks chunk occupancy and a generation counter per chunk. If a chunk's occupancy
    	// never exceeds pallocChunkDensePages over the course of a single GC cycle, the chunk
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/javadoc.css

    }
    .inherited-list {
        margin: 10px 0 10px 0;
    }
    section.class-description {
        line-height: 1.4;
    }
    .summary section[class$="-summary"], .details section[class$="-details"],
    .class-uses .detail, .serialized-class-details {
        padding: 0 20px 5px 10px;
        border: 1px solid var(--border-color);
        background-color: var(--section-background-color);
    }
    .inherited-list, section[class$="-details"] .detail {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableSortedMap.java

        return keySet;
      }
    
      @Override
      public ImmutableSortedSet<K> descendingKeySet() {
        return keySet.descendingSet();
      }
    
      /**
       * Serialized type for all ImmutableSortedMap instances. It captures the logical contents and they
       * are reconstructed using public factory methods. This ensures that the implementation types
       * remain as implementation details.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/MapMakerInternalMap.java

       * opportunistically, just to simplify some locking and avoid separate construction.
       */
      @SuppressWarnings("serial") // This class is never serialized.
      abstract static class Segment<
              K, V, E extends InternalEntry<K, V, E>, S extends Segment<K, V, E, S>>
          extends ReentrantLock {
    
        /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    If you need to serialize it, you can convert it into your own, serializable class.
    
    ==== Gradle does not use equals for serialized values in up-to-date checks
    
    Gradle now does not try to use equals when comparing serialized values in up-to-date checks.
    For more information see <<equals_up_to_date_deprecation>>.
    
    ==== Task and transform validation warnings introduced in Gradle 7.x are now errors
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top