Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for SubModule (0.12 sec)

  1. platforms/software/version-control/src/testFixtures/groovy/org/gradle/vcs/fixtures/GitFileRepository.java

            Repository submodule = null;
            try {
                submodule = git.submoduleAdd().
                    setURI(submoduleRepo.getWorkTree().toString()).
                    setPath(submoduleRepo.getName()).
                    call();
                return commit("add submodule " + submoduleRepo.getName(), submoduleRepo.getName());
            } finally {
                if (submodule != null) {
                    submodule.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)
  2. okhttp-hpacktests/README.md

    ==================
    
    These tests use the [hpack-test-case][1] project to validate OkHttp's HPACK
    implementation.  The HPACK test cases are in a separate git submodule, so to
    initialize them, you must run:
    
        git submodule init
        git submodule update
    
    TODO
    ----
    
     * Add maven goal to avoid manual call to git submodule init.
     * Make hpack-test-case update itself from git, and run new tests.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Dec 15 16:59:53 UTC 2014
    - 578 bytes
    - Viewed (0)
  3. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/GitVersionControlSystemSpec.groovy

            def submodule = target.file('submodule/foo.txt')
            submodule.text == "changed!"
            def submodule2 = target.file('submodule/submodule2/bar.txt')
            submodule2.text == "changed!"
    
            when:
            gitVcs.populate(target, repoHead, repoSpec)
    
            then:
            submodule.text == "hello from submodule"
            submodule2.text == "hello from another submodule"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:11:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. tensorflow/compat_template.__init__.py

    # Add module aliases
    _losses = _KerasLazyLoader(
        globals(), submodule="losses", name="losses", mode="v2")
    _metrics = _KerasLazyLoader(
        globals(), submodule="metrics", name="metrics", mode="v2")
    _optimizers = _KerasLazyLoader(
        globals(), submodule="optimizers", name="optimizers", mode="v2")
    _initializers = _KerasLazyLoader(
        globals(), submodule="initializers", name="initializers", mode="v2")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. 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)
  6. tensorflow/compat_template_v1.__init__.py

    setattr(_current_module, "flags", flags)
    
    # Add module aliases from Keras to TF.
    # Some tf endpoints actually lives under Keras.
    _current_module.layers = _KerasLazyLoader(
        globals(),
        submodule="__internal__.legacy.layers",
        name="layers",
        mode="v1")
    if _tf_uses_legacy_keras:
      _module_dir = _module_util.get_parent_dir_for_name(
          "tf_keras.api._v1.keras.__internal__.legacy.layers")
    else:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/main/java/org/gradle/vcs/git/internal/GitVersionControlSystem.java

            try (SubmoduleWalk walker = SubmoduleWalk.forIndex(git.getRepository())) {
                while (walker.next()) {
                    try (Repository submodule = walker.getRepository()) {
                        if (submodule != null) {
                            Git submoduleGit = Git.wrap(submodule);
                            configureTransport(submoduleGit.fetch()).call();
                            git.submoduleUpdate().addPath(walker.getPath()).call();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. 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)
  9. .gitmodules

    [submodule "okhttp-hpacktests/src/test/resources/hpack-test-case"]
    	path = okhttp-hpacktests/src/test/resources/hpack-test-case
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 10 09:33:37 UTC 2022
    - 182 bytes
    - Viewed (0)
  10. src/crypto/internal/nistec/fiat/Dockerfile

    # license that can be found in the LICENSE file.
    
    FROM coqorg/coq:8.13.2
    
    RUN git clone https://github.com/mit-plv/fiat-crypto && cd fiat-crypto && \
        git checkout 23d2dbc4ab897d14bde4404f70cd6991635f9c01 && \
        git submodule update --init --recursive
    RUN cd fiat-crypto && eval $(opam env) && make -j4 standalone-ocaml SKIP_BEDROCK2=1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 506 bytes
    - Viewed (0)
Back to top