Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 214 for reserialized (0.19 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/JpmsConfiguration.java

                "--add-opens=java.base/java.net=ALL-UNNAMED", // required by JavaObjectSerializationCodec
                "--add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED" // serialized from org.gradle.internal.file.StatStatistics$Collector
            ));
            gradleDaemonJvmArgs.addAll(configurationCacheJpmsArgs);
    
            GRADLE_DAEMON_JPMS_ARGS = Collections.unmodifiableList(gradleDaemonJvmArgs);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. cmd/object-api-datatypes_gen.go

    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		(*z) = BackendType(zb0001)
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z BackendType) Msgsize() (s int) {
    	s = msgp.IntSize
    	return
    }
    
    // MarshalMsg implements msgp.Marshaler
    func (z *BucketInfo) MarshalMsg(b []byte) (o []byte, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  3. cmd/storage-datatypes_gen.go

    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z BaseOptions) Msgsize() (s int) {
    	s = 1
    	return
    }
    
    // DecodeMsg implements msgp.Decodable
    func (z *CheckPartsHandlerParams) DecodeMsg(dc *msgp.Reader) (err error) {
    	var field []byte
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/SerializedLambdaParametersCheckingCodec.kt

            // Treat all parameters equally, regardless of whether they are implicit captured parameters or the lambda signature ones.
            // If any of them is of an unsupported type, a build that runs from the serialized state won't be able to provide an instance anyway.
            paramTypes.forEach { paramType ->
                unsupportedTypes[paramType]?.let { unsupportedKClass ->
                    logUnsupportedLambdaParameterType(unsupportedKClass)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/StoringInterpretationSchemaBuilder.kt

    import org.gradle.internal.declarativedsl.serialization.SchemaSerialization
    import java.io.File
    
    
    /**
     * In addition to creating the interpretation schema by delegating to [schemaBuilder],
     * stores the produced serialized schema in the file system (under `.gradle/declarative-schema/...` in the project).
     */
    internal
    class StoringInterpretationSchemaBuilder(
        private val schemaBuilder: InterpretationSchemaBuilder,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/python/quantization.py

      """Serializes SignatureDef values in `signature_def_map`.
    
      Args:
        signature_def_map: Signature key -> SignatureDef mapping.
    
      Returns:
        Signature def map where the values (`SignatureDef`) are serialized.
      """
      signature_def_map_serialized = {}
      for key, signature_def in signature_def_map.items():
        signature_def_map_serialized[key] = signature_def.SerializeToString()
    
      return signature_def_map_serialized
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 12:53:33 UTC 2024
    - 4.6K bytes
    - Viewed (1)
  7. tensorflow/compiler/mlir/quantization/stablehlo/cc/report.cc

    // its `name` field set to the callee's name reverted back to the lifted
    // function's name. Also, `call_op` must have the `kQuantizationMethodAttr`
    // attribute, which is deserialized as `Method` and set in the returned
    // `QuantizationResult`. Otherwise, it returns `std::nullopt`.
    std::optional<QuantizationResult> GetQuantizationResult(func::CallOp call_op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. cmd/xl-storage-format-v2_gen.go

    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		(*z) = ChecksumAlgo(zb0001)
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z ChecksumAlgo) Msgsize() (s int) {
    	s = msgp.Uint8Size
    	return
    }
    
    // DecodeMsg implements msgp.Decodable
    func (z *ErasureAlgo) DecodeMsg(dc *msgp.Reader) (err error) {
    	{
    		var zb0001 uint8
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/config.go

    			Further, kubeadm can only write out config of version %q, but read both types.
    			So regardless of what version you pass to the --old-config parameter here, the API object will be
    			read, deserialized, defaulted, converted, validated, and re-serialized when written to stdout or
    			--new-config if specified.
    
    			In other words, the output of this command is what kubeadm actually would read internally if you
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/quantize_preprocess.cc

        // legalizing to stablehlo.constant.
        AddTFToStablehloPasses(pm_after_freezing_variables, input_arg_shapes);
      }
    
      if (deserialize_xla_call_module) {
        // Deserialize the StableHLO module embedded in tf.XlaCallModule and lifts
        // the StableHLO functions to the top level module. This is needed for
        // StableHLO quantization. Also restores some shape information for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top