Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 43 for submodule2 (0.16 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. 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)
  3. platforms/software/version-control/src/testFixtures/groovy/org/gradle/vcs/fixtures/GitFileRepository.java

                        try {
                            submodulePaths.add(walker.getPath());
                            Git.wrap(submodule).pull().call();
                        } finally {
                            submodule.close();
                        }
                    }
                } finally {
                    walker.close();
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. 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)
  5. pkg/kubelet/checkpointmanager/README.md

    ## Introduction
    This folder contains a framework & primitives, Checkpointing Manager, which is
    used by several other Kubelet submodules, `dockershim`, `devicemanager`, `pods`
    and `cpumanager`, to implement checkpointing at each submodule level. As already
    explained in above `Disclaimer` section, think twice before introducing any further
    checkpointing in Kubelet. If still checkpointing is required, then this folder
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 16 05:30:20 UTC 2018
    - 1.7K bytes
    - Viewed (0)
  6. build/tools.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // This package imports things required by build scripts and test packages of submodules, to force `go mod` to see them as dependencies
    package tools
    
    import (
    	// build script dependencies
    	_ "github.com/onsi/ginkgo/v2/ginkgo"
    	_ "k8s.io/code-generator/cmd/deepcopy-gen"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:36 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/internal/testdata/gen_saved_models.py

        def __init__(self):
          super(Module, self).__init__()
          self.sub_module = SubModule()
          self.initialized_variable = variables.Variable(
              1.0, name="initialized_variable")
          # An UninitializedVariable with the same name as the variable in the
          # SubModule, but with a different type.
          self.uninitialized_variable = resource_variable_ops.UninitializedVariable(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 06 21:32:57 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. tensorflow/api_template.__init__.py

      )
    
    # Add Keras module aliases
    _losses = _KerasLazyLoader(globals(), submodule="losses", name="losses")
    _metrics = _KerasLazyLoader(globals(), submodule="metrics", name="metrics")
    _optimizers = _KerasLazyLoader(
        globals(), submodule="optimizers", name="optimizers")
    _initializers = _KerasLazyLoader(
        globals(), submodule="initializers", name="initializers")
    setattr(_current_module, "losses", _losses)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 06:27:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top