Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 241 for set_type (0.14 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/utils/fill_quantization_options.cc

                                      const QuantizationComponent& component,
                                      const BitType bit_type,
                                      const BitWidth bit_width) {
      spec->set_quantization_component(component);
      spec->set_bit_type(bit_type);
      spec->set_bit_width(bit_width);
    }
    
    ::stablehlo::quantization::QuantizationOptions FillPresetQuantizationOptions(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 08:32:43 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/publish/DecoratingPublishArtifact.java

        }
    
        @Override
        public String getExtension() {
            return GUtil.getOrDefault(extension, publishArtifact::getExtension);
        }
    
        @Override
        public String getType() {
            return GUtil.getOrDefault(type, publishArtifact::getType);
        }
    
        @Override
        public String getClassifier() {
            if (classifierSet) {
                return classifier;
            }
            return publishArtifact.getClassifier();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/symbolbuilder.go

    func (sb *SymbolBuilder) Sect() *sym.Section     { return sb.l.SymSect(sb.symIdx) }
    
    // Setters for symbol properties.
    
    func (sb *SymbolBuilder) SetType(kind sym.SymKind)   { sb.kind = kind }
    func (sb *SymbolBuilder) SetSize(size int64)         { sb.size = size }
    func (sb *SymbolBuilder) SetData(data []byte)        { sb.data = data }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:25:19 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  4. samples/guide/src/main/java/okhttp3/recipes/kt/PostMultipart.kt

      private val client = OkHttpClient()
    
      fun run() {
        // Use the imgur image upload API as documented at https://api.imgur.com/endpoints/image
        val requestBody =
          MultipartBody.Builder()
            .setType(MultipartBody.FORM)
            .addFormDataPart("title", "Square Logo")
            .addFormDataPart(
              "image",
              "logo-square.png",
              File("docs/images/logo-square.png").asRequestBody(MEDIA_TYPE_PNG),
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tpu_space_to_depth_pass.cc

        auto ranked_type = mlir::dyn_cast<RankedTensorType>(input.getType());
        if (!ranked_type) return false;
        auto input_shape = ranked_type.getShape();
        auto space_to_depth =
            BuildSpaceToDepth(cluster_func, input, block_size, input_shape);
        entry.value().set(space_to_depth);
        block_arg.setType(space_to_depth.getType());
      }
      return true;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  6. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/artifact/NormalizedIvyArtifact.java

            return name;
        }
    
        @Override
        public void setName(String name) {
            throw new IllegalStateException();
        }
    
        @Override
        public String getType() {
            return type;
        }
    
        @Override
        public void setType(String type) {
            throw new IllegalStateException();
        }
    
        @Nullable
        @Override
        public String getConf() {
            return conf;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/MavenArtifactMetadata.java

            return classifier;
        }
    
        public void setClassifier(String classifier) {
            this.classifier = classifier;
        }
    
        public String getType() {
            return type;
        }
    
        public void setType(String type) {
            this.type = type;
        }
    
        public Object getDatum() {
            return datum;
        }
    
        public void setDatum(Object datum) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/lift_variables.cc

          arg.setType(new_arg_type);
        }
    
        // Update the function type.
        func.setType(mlir::FunctionType::get(module.getContext(),
                                             func.getBody().getArgumentTypes(),
                                             func.getFunctionType().getResults()));
      }
      return success();
    }
    
    }  // namespace tf_saved_model
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/processing/IsolatingProcessingStrategy.java

     *
     * @see IsolatingProcessor
     */
    class IsolatingProcessingStrategy extends IncrementalProcessingStrategy {
    
        IsolatingProcessingStrategy(AnnotationProcessorResult result) {
            super(result);
            result.setType(ISOLATING);
        }
    
        @Override
        public void recordProcessingInputs(Set<String> supportedAnnotationTypes, Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) {
    
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/publish/ArchivePublishArtifact.java

            this.name = name;
        }
    
        @Override
        public void setExtension(String extension) {
            this.extension = extension;
        }
    
        @Override
        public void setType(String type) {
            this.type = type;
        }
    
        @Override
        public void setClassifier(String classifier) {
            this.classifier = classifier;
        }
    
        public void setDate(Date date) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 15:32:09 UTC 2022
    - 3.5K bytes
    - Viewed (0)
Back to top