Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 378 for Importer (0.22 sec)

  1. src/go/internal/gcimporter/gcimporter.go

    		// The unified export format starts with a 'u'; the indexed export
    		// format starts with an 'i'; and the older binary export format
    		// starts with a 'c', 'd', or 'v' (from "version"). Select
    		// appropriate importer.
    		switch exportFormat {
    		case 'u':
    			var data []byte
    			var r io.Reader = buf
    			if size >= 0 {
    				if data, err = saferio.ReadData(r, uint64(size)); err != nil {
    					return
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixtureTest.java

    package org.gradle.architecture.test;
    
    import com.google.common.collect.ImmutableList;
    import com.tngtech.archunit.core.domain.JavaClass;
    import com.tngtech.archunit.core.domain.JavaMethod;
    import com.tngtech.archunit.core.importer.ClassFileImporter;
    import com.tngtech.archunit.lang.ArchCondition;
    import com.tngtech.archunit.lang.ConditionEvent;
    import com.tngtech.archunit.lang.ConditionEvents;
    import org.gradle.api.NonNullApi;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. docs/fr/docs/tutorial/body.md

    ## Importez le `BaseModel` de Pydantic
    
    Commencez par importer la classe `BaseModel` du module `pydantic` :
    
    ```Python hl_lines="4"
    {!../../../docs_src/body/tutorial001.py!}
    ```
    
    ## Créez votre modèle de données
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_translate.cc

        "use-external-constant",
        llvm::cl::desc("Use external constant during flatbuffer import"),
        llvm::cl::location(use_external_constant), llvm::cl::init(false));
    
    // TODO(b/147111261): After the importer supports generic custom ops, we should
    // change the flag to a more lightwise flag, e.g.
    // "import_custom_ops_as_side_effect_free_ops", and let the MLIR DCE to prune
    // the operations.
    // NOLINTNEXTLINE
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/mlir_roundtrip_flags.cc

        GraphImportConfig::InputArrays* inputs) {
      std::vector<std::string> used_node_dtypes;
      if (node_dtypes.empty()) {
        // Mark all the node dtypes Invalid, so the importer can handle them by
        // using the type from the graph.
        used_node_dtypes.resize(node_names.size(), DataType_Name(DT_INVALID));
      } else if (node_names.size() == node_dtypes.size()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/lift_tflite_flex_ops.cc

        // TFLite flatbuffer schema doesn't distinguish scalar tensor shapes
        // and unranked tensor shapes (i.e. they are both represented as an empty
        // INT32 list), see b/138865275. MLIR importer conservatively treats them as
        // unranked tensor types. Here we set them to scalar tensor types when it is
        // safe.
        if (auto tensor_array_v3_op = dyn_cast<TF::TensorArrayV3Op>(tf_op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. src/go/build/deps_test.go

    	mime, net/textproto, net/url
    	< NET;
    
    	# logging - most packages should not import; http and up is allowed
    	FMT, log/internal
    	< log;
    
    	log, log/slog !< crypto/tls, database/sql, go/importer, testing;
    
    	FMT, log, net
    	< log/syslog;
    
    	RUNTIME
    	< log/slog/internal, log/slog/internal/buffer;
    
    	FMT,
    	encoding, encoding/json,
    	log, log/internal,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/universe.go

    	"strings"
    )
    
    // The Universe scope contains all predeclared objects of Go.
    // It is the outermost scope of any chain of nested scopes.
    var Universe *Scope
    
    // The Unsafe package is the package returned by an importer
    // for the import path "unsafe".
    var Unsafe *Package
    
    var (
    	universeIota       Object
    	universeByte       Type // uint8 alias, but has name "byte"
    	universeRune       Type // int32 alias, but has name "rune"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. src/go/types/universe.go

    	"strings"
    )
    
    // The Universe scope contains all predeclared objects of Go.
    // It is the outermost scope of any chain of nested scopes.
    var Universe *Scope
    
    // The Unsafe package is the package returned by an importer
    // for the import path "unsafe".
    var Unsafe *Package
    
    var (
    	universeIota       Object
    	universeByte       Type // uint8 alias, but has name "byte"
    	universeRune       Type // int32 alias, but has name "rune"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. api/go1.22.txt

    pkg encoding/hex, func AppendEncode([]uint8, []uint8) []uint8 #53693
    pkg go/ast, func NewPackage //deprecated #52463
    pkg go/ast, func Unparen(Expr) Expr #60061
    pkg go/ast, type Importer //deprecated #52463
    pkg go/ast, type Object //deprecated #52463
    pkg go/ast, type Package //deprecated #52463
    pkg go/ast, type Scope //deprecated #52463
    pkg go/types, func NewAlias(*TypeName, Type) *Alias #63223
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 20:54:27 UTC 2024
    - 7.7K bytes
    - Viewed (0)
Back to top