Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 244 for exporters (0.24 sec)

  1. src/internal/types/testdata/check/importdecl0/importdecl0a.go

    import f2 "fmt"
    
    // reflect.flag must not be visible in this package
    type flag int
    type _ reflect.flag /* ERROR "name flag not exported by package reflect" */
    
    // imported package name may conflict with local objects
    type reflect /* ERROR "reflect already declared" */ int
    
    // dot-imported exported objects may conflict with local objects
    type Value /* ERROR "Value already declared through dot-import of package reflect" */ struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow_to_stablehlo/README.md

        --input-path=/path/to/model \
        [--exported-model-signatures=signature1,signature2] \
        [--tag-names=tag1,tag2] \
        [--input-arg-shapes-str=arg-name:shape,...] \
        [--e] \
        [--output-filename=/path/to/output.mlir]
    ```
    
    * `--input-path`: The path to the input TensorFlow SavedModel or MLIR module
      with .mlir extension.
    * `--exported-model-signatures`: Comma-separated list of exported model
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. src/go/internal/gcimporter/gcimporter.go

    						err = errors.New(string(ee.Stderr))
    					}
    					return
    				}
    
    				exports := strings.Split(string(bytes.TrimSpace(output)), "\n")
    				if len(exports) != 1 {
    					err = fmt.Errorf("go list reported %d exports; expected 1", len(exports))
    					return
    				}
    
    				exportPath = exports[0]
    			})
    
    			return exportPath, err
    		})
    	}
    
    	return f.(func() (string, error))()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathContainerCrossVersionSpec.groovy

            EclipseClasspathContainer container = project.classpathContainers.find { it.path == 'whenMergedContainerPath' }
    
            then:
            container != null
            container.exported == false
        }
    
        def "Classpath container can be configured"() {
            buildFile <<
            """apply plugin: 'java'
               apply plugin: 'eclipse'
               eclipse {
                   classpath {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. src/expvar/expvar.go

    }
    
    // All published variables.
    var vars Map
    
    // Publish declares a named exported variable. This should be called from a
    // package's init function when it creates its Vars. If the name is already
    // registered then this will log.Panic.
    func Publish(name string, v Var) {
    	if _, dup := vars.m.LoadOrStore(name, v); dup {
    		log.Panicln("Reuse of exported var name:", name)
    	}
    	vars.keysMu.Lock()
    	defer vars.keysMu.Unlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 21:32:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.cc

        if (exported_names.empty())
          return session_initializer.emitOpError()
                 << "the initializer function should be exported";
    
        if (exported_names.size() != 1)
          return session_initializer.emitOpError()
                 << "the initializer function should have only one exported names";
      }
    
      return success();
    }
    
    }  // namespace tf_saved_model
    }  // namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  7. android/pom.xml

                    <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED</arg>
                    <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED</arg>
                    <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED</arg>
                    <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED</arg>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. pom.xml

                    <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED</arg>
                    <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED</arg>
                    <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.main=ALL-UNNAMED</arg>
                    <arg>-J--add-exports=jdk.compiler/com.sun.tools.javac.model=ALL-UNNAMED</arg>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/BUILD

        ],
    )
    
    # OSS: This is a header-only target. The implementation target `quantize_model_cc_impl` is
    # directly linked to `lib_pywrap_tensorflow_internal.so`, so in most use cases of python-
    # exported symbols depending directly on `quantize_model_cc_impl` should be unnecessary.
    # Using the header-only target will help avoid the ODR violation.
    cc_library(
        name = "quantize_model_cc",
        hdrs = ["quantize_model.h"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow_to_stablehlo/python/pywrap_tensorflow_to_stablehlo.cc

          },
          R"pbdoc(
            Converts a TensorFlow SavedModel into StableHLO bytecode.
    
            * input-path: The path to the input TensorFlow SavedModel.
            * exported-model-signatures: Comma-separated list of exported model
              signatures to convert.
            * tag_names: Comma-separated list of tags for loading SavedModel.
            * input-arg-shapes: A string representation of input argument shapes for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top