Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 392 for exporters (0.27 sec)

  1. tensorflow/compiler/jit/xla_device_compiler_client.cc

             "serializing it to string.";
      xla::Compiler* compiler = client_->backend().compiler();
      auto exported = compiler->Export(executable.executable());
      if (exported.ok()) {
        return (*exported)->SerializeAsString();
      }
    
      return exported.status();
    }
    
    absl::StatusOr<std::string> XlaDeviceCompilerClient::BuildSerializedExecutable(
        const XlaCompiler::Options& options,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/templates/problems-api-usage/reporters/model-builder-plugin/src/main/java/reporters/ModelBuilder.java

    package reporters;
    
    import org.gradle.api.Project;
    import org.gradle.api.problems.Problems;
    import org.gradle.api.problems.Severity;
    import org.gradle.tooling.provider.model.ToolingModelBuilder;
    
    import javax.inject.Inject;
    
    public class ModelBuilder implements ToolingModelBuilder {
    
        private final Problems problems;
    
        @Inject
        public ModelBuilder(Problems problems) {
            this.problems = problems;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 928 bytes
    - Viewed (0)
  3. pkg/zdsapi/zds.pb.go

    	}
    	if !protoimpl.UnsafeEnabled {
    		file_zdsapi_zds_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
    			switch v := v.(*ZdsHello); i {
    			case 0:
    				return &v.state
    			case 1:
    				return &v.sizeCache
    			case 2:
    				return &v.unknownFields
    			default:
    				return nil
    			}
    		}
    		file_zdsapi_zds_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/SourceFolder.java

        @Override
        public int hashCode() {
            return Objects.hashCode(exported, accessRules, excludes, includes, getNativeLibraryLocation(), output, path);
        }
    
        @Override
        public String toString() {
            return "SourceFolder{path='" + path + "', dir='" + dir + "', nativeLibraryLocation='" + getNativeLibraryLocation() + "', exported=" + exported
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/templates/problems-api-usage/reporters/standard-plugin/src/main/java/reporters/StandardPlugin.java

    package reporters;
    
    import org.gradle.api.Plugin;
    import org.gradle.api.Project;
    import org.gradle.api.problems.Problems;
    import org.gradle.api.problems.Severity;
    
    import javax.inject.Inject;
    
    /**
     * This is a simple, standard Gradle plugin that is applied to a project.
     */
    public class StandardPlugin implements Plugin<Project> {
    
        private final Problems problems;
    
        @Inject
        public StandardPlugin(Problems problems) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. hack/golangci.yaml

          path-except: cmd/kubeadm
    
        # The following issues were deemed "might be worth fixing, needs to be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/importer_test_min_max.cc.mlir

    // RUN: flatbuffer_translate -mlir-to-tflite-flatbuffer %s -o - | flatbuffer_translate --tflite-flatbuffer-to-mlir - -o - | FileCheck %s
    // This only test the exporter and importer are working without min/max quantization parameters.
    
    func.func @main(tensor<40x37xf32>, tensor<40x37xf32>) -> tensor<40x40xf32> {
    ^bb0(%arg0: tensor<40x37xf32>, %arg1: tensor<40x37xf32>):
      %cst = arith.constant dense<1.0> : tensor<40xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. hack/golangci.yaml.in

          path-except: cmd/kubeadm
    
        {{- if not .Hints}}
    
        # The following issues were deemed "might be worth fixing, needs to be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 13:12:04 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/object.go

    //
    // Objects are ordered nil before non-nil, exported before
    // non-exported, then by name, and finally (for non-exported
    // functions) by package path.
    func (a *object) less(b *object) bool {
    	if a == b {
    		return false
    	}
    
    	// Nil before non-nil.
    	if a == nil {
    		return true
    	}
    	if b == nil {
    		return false
    	}
    
    	// Exported functions before non-exported.
    	ea := isExported(a.name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  10. src/runtime/sizeof_test.go

    	var tests = []struct {
    		val    any     // type as a value
    		_32bit uintptr // size on 32bit platforms
    		_64bit uintptr // size on 64bit platforms
    	}{
    		{runtime.G{}, 272, 432},   // g, but exported for testing
    		{runtime.Sudog{}, 56, 88}, // sudog, but exported for testing
    	}
    
    	for _, tt := range tests {
    		want := tt._32bit
    		if _64bit {
    			want = tt._64bit
    		}
    		got := reflect.TypeOf(tt.val).Size()
    		if want != got {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 892 bytes
    - Viewed (0)
Back to top