Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for submodule2 (0.18 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/CredentialsProviderIntegrationTest.groovy

                }
            """
            file('submodule1/build.gradle') << buildScript
            file('submodule2/build.gradle') << buildScript
            file('submodule3/build.gradle') << buildScript
            file('submodule4/build.gradle') << buildScript
            settingsFile << """
                rootProject.name="test"
                include("submodule1", "submodule2", "submodule3", "submodule4")
            """
            buildFile << ""
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  2. docs/de/docs/tutorial/bigger-applications.md

    * Das Gleiche gilt für `app/routers/users.py`, es ist ein weiteres Submodul: `app.routers.users`.
    * Es gibt auch ein Unterverzeichnis `app/internal/` mit einer weiteren Datei `__init__.py`, es handelt sich also um ein weiteres „Python-Subpackage“: `app.internal`.
    * Und die Datei `app/internal/admin.py` ist ein weiteres Submodul: `app.internal.admin`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:59 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/GitVcsIntegrationTest.groovy

        def 'can define and use source repositories with submodules'() {
            given:
            // Populate submodule origin
            evenDeeperRepo.file('foo').text = "baz"
            evenDeeperRepo.commit('initial commit', "foo")
            deeperRepo.file('foo').text = "bar"
            deeperRepo.commit("initial commit", "foo")
            // Add submodule to repo
            deeperRepo.addSubmodule(evenDeeperRepo)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf.cc

    // and inserts it into a submodule. We just want to run the clustering
    // portion of the pipeline on just the single submodule.
    absl::Status RunClusteringPipelineOnSubmodule(
        ModuleOp parent_module, bool is_in_fallback_enabled_mode) {
      int num_submodules = 0;
      absl::Status clustering_pipeline_status;
      parent_module.walk([&](ModuleOp submodule) {
        if (submodule == parent_module) return mlir::WalkResult::advance();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:25:18 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/go/internal/vcs/vcs_test.go

    		{
    			"hub.jazz.net/git/user1/pkgname",
    			&RepoRoot{
    				VCS:  vcsGit,
    				Repo: "https://hub.jazz.net/git/user1/pkgname",
    			},
    		},
    		{
    			"hub.jazz.net/git/user1/pkgname/submodule/submodule/submodule",
    			&RepoRoot{
    				VCS:  vcsGit,
    				Repo: "https://hub.jazz.net/git/user1/pkgname",
    			},
    		},
    		{
    			"hub.jazz.net",
    			nil,
    		},
    		{
    			"hubajazz.net",
    			nil,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 15:33:59 UTC 2022
    - 17K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/zip/zip.go

    	cf, _, _ := checkFiles(files)
    	return cf, cf.Err()
    }
    
    // checkFiles implements CheckFiles and also returns lists of valid files and
    // their sizes, corresponding to cf.Valid. It omits files in submodules, files
    // in vendored packages, symlinked files, and various other unwanted files.
    //
    // The lists returned are used in Create to avoid repeated calls to File.Lstat.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 31K bytes
    - Viewed (0)
  9. src/cmd/go/internal/vcs/vcs.go

    	Name: "Git",
    	Cmd:  "git",
    	RootNames: []rootName{
    		{filename: ".git", isDir: true},
    	},
    
    	CreateCmd:   []string{"clone -- {repo} {dir}", "-go-internal-cd {dir} submodule update --init --recursive"},
    	DownloadCmd: []string{"pull --ff-only", "submodule update --init --recursive"},
    
    	TagCmd: []tagCmd{
    		// tags/xxx matches a git tag named xxx
    		// origin/xxx matches a git branch named xxx on the default remote repository
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  10. 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)
Back to top