Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for submodule2 (0.21 sec)

  1. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/GitVersionControlSystemSpec.groovy

            when:
            gitVcs.populate(target, repoHead, repoSpec)
    
            then:
            submodule.text == "hello from submodule"
            submodule2.text == "hello from another submodule"
        }
    
        def 'error if working dir is not a repository'() {
            given:
            def target = tmpDir.file('versionDir')
            target.file('repo').mkdirs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:11:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/bigger-applications.md

    * The file `app/routers/items.py` is inside a package, `app/routers/`, so, it's a submodule: `app.routers.items`.
    * The same with `app/routers/users.py`, it's another submodule: `app.routers.users`.
    * There's also a subdirectory `app/internal/` with another file `__init__.py`, so it's another "Python subpackage": `app.internal`.
    * And the file `app/internal/admin.py` is another submodule: `app.internal.admin`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  3. docs/em/docs/tutorial/bigger-applications.md

    │   │   ├── items.py     # "items" submodule, e.g. import app.routers.items
    │   │   └── users.py     # "users" submodule, e.g. import app.routers.users
    │   └── internal         # "internal" is a "Python subpackage"
    │       ├── __init__.py  # makes "internal" a "Python subpackage"
    │       └── admin.py     # "admin" submodule, e.g. import app.internal.admin
    ```
    
    ## `APIRouter`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    }
    
    Status SavedModelSignatureDefImporterLite::MoveConvertedFunctionsToModule(
        absl::string_view name, mlir::ModuleOp sub_module,
        const std::unordered_map<std::string, std::string>& tf_name_to_mlir_name) {
      mlir::Builder builder(sub_module.getContext());
      mlir::SymbolTable sub_module_symbol_table(sub_module);
    
      // Functions originally from graphdef library might have a different name
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/stdlib_test.go

    }
    
    // Package paths of excluded packages.
    var excluded = map[string]bool{
    	"builtin": true,
    
    	// go.dev/issue/46027: some imports are missing for this submodule.
    	"crypto/internal/edwards25519/field/_asm": true,
    	"crypto/internal/bigmod/_asm":             true,
    }
    
    // printPackageMu synchronizes the printing of type-checked package files in
    // the typecheckFiles function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/internal/saved_model_api_test.cc

                                                         &uninitialized_variable));
      ASSERT_EQ(tensorflow::DT_FLOAT, uninitialized_variable->dtype());
    
      ASSERT_EQ(absl::OkStatus(),
                model_api->GetVariable("sub_module.uninitialized_variable",
                                       &uninitialized_variable));
      ASSERT_EQ(tensorflow::DT_INT64, uninitialized_variable->dtype());
    
      TF_DeleteSavedModel(saved_model);
      TF_DeleteStatus(status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 08:08:45 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/help/helpdoc.go

    top-level "crash/bang".
    
    Code in vendor directories is not subject to import path
    checking (see 'go help importpath').
    
    When 'go get' checks out or updates a git repository, it now also
    updates submodules.
    
    Vendor directories do not affect the placement of new repositories
    being checked out for the first time by 'go get': those are always
    placed in the main GOPATH, never in a vendor subtree.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //
    // Code in vendor directories is not subject to import path
    // checking (see 'go help importpath').
    //
    // When 'go get' checks out or updates a git repository, it now also
    // updates submodules.
    //
    // Vendor directories do not affect the placement of new repositories
    // being checked out for the first time by 'go get': those are always
    // placed in the main GOPATH, never in a vendor subtree.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. RELEASE.md

            endpoints in versions.py to corresponding endpoints in `tf.sysconfig.`
            and `tf.version.`. Moving all constants under `tf.saved_model`
            submodules to `tf.saved_model` module. New endpoints are added in V1 and
            V2 but existing endpoint removals are only applied in V2.
        *   Deprecates behavior where device assignment overrides collocation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top