Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for reserialized (0.24 sec)

  1. guava-tests/test/com/google/common/collect/MapsTest.java

        assertNotSame(System.getProperty("java.version"), result.get("java.version"));
      }
    
      @J2ktIncompatible
      @GwtIncompatible // Maps.fromProperties
      @SuppressWarnings("serial") // never serialized
      public void testFromPropertiesNullKey() {
        Properties properties =
            new Properties() {
              @Override
              public Enumeration<?> propertyNames() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  2. android/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)
  3. android/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: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			expectedCalcCost: 1887437,
    			setMaxElements:   5,
    			expectedSetCost:  17,
    		},
    		// all array-of-array tests should have the same expected cost along the same expression,
    		// since arrays-of-arrays are serialized the same in minimized form regardless of item type
    		// of the subarray ([[], [], ...])
    		{
    			name:             "array of number arrays with all",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    limitations under the License.
    */
    
    // Package v1 contains API types that are common to all versions.
    //
    // The package contains two categories of types:
    //   - external (serialized) types that lack their own version (e.g TypeMeta)
    //   - internal (never-serialized) types that are needed by several different
    //     api groups, and so live here, to avoid duplication and/or import loops
    //     (e.g. LabelSelector).
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/reflect/TypeToken.java

     * that it is serializable and offers numerous additional utility methods.
     *
     * @author Bob Lee
     * @author Sven Mawson
     * @author Ben Yu
     * @since 12.0
     */
    @SuppressWarnings("serial") // SimpleTypeToken is the serialized form.
    @ElementTypesAreNonnullByDefault
    public abstract class TypeToken<T> extends TypeCapture<T> implements Serializable {
    
      private final Type runtimeType;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/reflect/TypeToken.java

     * that it is serializable and offers numerous additional utility methods.
     *
     * @author Bob Lee
     * @author Sven Mawson
     * @author Ben Yu
     * @since 12.0
     */
    @SuppressWarnings("serial") // SimpleTypeToken is the serialized form.
    @ElementTypesAreNonnullByDefault
    public abstract class TypeToken<T> extends TypeCapture<T> implements Serializable {
    
      private final Type runtimeType;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

        self._op_defs = op_defs
    
      def _create_mlir_loc(self, loc):
        """Creates mlir location from autograph ORIGIN value.
    
        Args:
          loc: OriginInfo
    
        Returns:
          A serialized mlir location string.
        """
        if loc is not None and loc.loc.filename:
          file_name = os.path.basename(loc.loc.filename)
          return 'loc("{}":{}:{})'.format(file_name, loc.loc.lineno,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      builder->create<ReturnOp>(ops.front()->getLoc(), results_after_mapping);
      return outlined_func;
    }
    
    // Encapsulates `func` in a module and serializes that module.
    // `serialized_func_module` is set to the serialized module.
    void EncapsulateFuncAndSerialize(FuncOp func,
                                     std::string* serialized_func_module) {
      // Create a new module to hold func and all referenced functions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  10. src/time/format.go

    // includes a final field "m=±<value>", where value is the monotonic
    // clock reading formatted as a decimal number of seconds.
    //
    // The returned string is meant for debugging; for a stable serialized
    // representation, use t.MarshalText, t.MarshalBinary, or t.Format
    // with an explicit format string.
    func (t Time) String() string {
    	s := t.Format("2006-01-02 15:04:05.999999999 -0700 MST")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
Back to top