Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 85 for opcode (0.23 sec)

  1. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/JavaRecordCodec.kt

            // need to check by name because it's only present in Java 14+
            JavaRecordEncoding.takeIf { type.superclass?.canonicalName == "java.lang.Record" }
    
        override suspend fun ReadContext.decode(): Any? {
            val clazz = readClass()
            val fields = clazz.relevantFields
    
            val args = readFields(fields)
            val types = fields.map { it.type }.toTypedArray()
            return try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Contexts.kt

            beanStateWriterLookup.beanStateWriterFor(beanType)
    
        override val isolate: WriteIsolate
            get() = getIsolate()
    
        override suspend fun write(value: Any?) {
            getCodec().run {
                encode(value)
            }
        }
    
        override fun writeClass(type: Class<*>) {
            classEncoder.run {
                encodeClass(type)
            }
        }
    
        // TODO: consider interning strings
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

          const auto op = quantized_graph->operators()->Get(i);
          const uint32_t op_code_idx = op->opcode_index();
          const auto op_code =
              GetBuiltinCode(output_model->operator_codes()->Get(op_code_idx));
          if (op_code == BuiltinOperator_CONV_2D) {
            num_conv_ops++;
            // Ensure that each convolution's weights tensor is now INT8.
            const auto weights_tensor =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileTreeCodec.kt

        private val fileOperations: FileOperations
    ) : Codec<FileTreeInternal> {
    
        override suspend fun WriteContext.encode(value: FileTreeInternal) {
            encodePreservingIdentityOf(value) {
                write(rootSpecOf(value))
            }
        }
    
        override suspend fun ReadContext.decode(): FileTreeInternal? =
            decodePreservingIdentity { id ->
                val specs = readNonNull<List<FileTreeSpec>>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. docs/ko/docs/tutorial/response-status-code.md

    !!! note "기술적 세부사항"
        `from starlette import status` 역시 사용할 수 있습니다.
    
        **FastAPI**는 개발자인 여러분의 편의를 위해 `fastapi.status` 와 동일한 `starlette.status` 도 제공합니다. 하지만 이것은 Starlette로부터 직접 제공됩니다.
    
    ## 기본값 변경
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:06:53 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/FileCollectionCodec.kt

        private val fileCollectionFactory: FileCollectionFactory,
        private val artifactSetConverter: ArtifactSetToFileCollectionFactory
    ) : Codec<FileCollectionInternal> {
    
        override suspend fun WriteContext.encode(value: FileCollectionInternal) {
            encodePreservingIdentityOf(value) {
                encodeContents(value)
            }
        }
    
        suspend fun WriteContext.encodeContents(value: FileCollectionInternal) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/package-info.java

     *  </p>
     *  <p><code>WriteContext.write(object)</code> then delegates to {@link org.gradle.internal.serialize.graph.Codec#encode(WriteContext, java.lang.Object, kotlin.coroutines.Continuation) Codec.encode(WriteContext, Object)}.</p>
     *  <p>A codec implementation will, generally:
     *  <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. cmd/batch-job-common-types.go

    // UnmarshalYAML - BatchJobKV extends default unmarshal to extract line, col information.
    func (kv *BatchJobKV) UnmarshalYAML(val *yaml.Node) error {
    	type jobKV BatchJobKV
    	var tmp jobKV
    	err := val.Decode(&tmp)
    	if err != nil {
    		return err
    	}
    	*kv = BatchJobKV(tmp)
    	kv.line, kv.col = val.Line, val.Column
    	return nil
    }
    
    // Validate returns an error if key is empty
    func (kv BatchJobKV) Validate() error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

        private val taskNodeFactory: TaskNodeFactory
    ) : Codec<LocalTaskNode> {
    
        override suspend fun WriteContext.encode(value: LocalTaskNode) {
            val task = value.task
            writeTask(task)
        }
    
        override suspend fun ReadContext.decode(): LocalTaskNode {
            val task = readTask()
            val node = taskNodeFactory.getOrCreateNode(task) as LocalTaskNode
            node.isolated()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-kubeapiserver.sh

      encryption_provider_config_vol_mnt=$(echo "${ENCRYPTION_PROVIDER_CONFIG_VOL_MNT:-"${default_encryption_provider_config_vol_mnt}"}" | base64 --decode)
      encryption_provider_config_vol=$(echo "${ENCRYPTION_PROVIDER_CONFIG_VOL:-"${default_encryption_provider_config_vol}"}" | base64 --decode)
      sed -i -e " {
        s@{{encryption_provider_mount}}@${encryption_provider_config_vol_mnt},@
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top