Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,190 for ModuleC (0.16 sec)

  1. maven-model-builder/src/test/resources/poms/inheritance/module-path-not-artifactId-parent.xml

      <groupId>inheritance</groupId>
      <artifactId>parent</artifactId>
      <version>11-SNAPSHOT</version>
    
      <name>Model inheritance test parent: module path != artifactId</name>
    
      <modules>
        <module>child</module>
      </modules>
    
      <!-- 5 URLs in the pom will be inherited with path added -->
      <url>http://www.apache.org/</url>
      <scm>
        <connection>scm:my-scm:http://domain.org/base</connection>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libtf/module.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/cc/experimental/libtf/module.h"
    
    #include <string>
    
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/protobuf/saved_object_graph.pb.h"
    namespace tf {
    namespace libtf {
    namespace impl {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 02 20:02:30 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  3. hack/verify-internal-modules.sh

    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/verify-generated.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 18:39:23 UTC 2023
    - 853 bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesChangingModulesIntegrationTest.groovy

        abstract String getRepoDeclaration()
    
        def moduleA = getRepo().module('org.test', 'moduleA', '1.0')
    
        def setup() {
            moduleA.publish()
            moduleA.allowAll()
        }
    
        def "changing dependency doesn't affect changing flag"() {
            buildFile <<
    """
    $repoDeclaration
    configurations {
        modules
    }
    
    class VerifyingRule implements ComponentMetadataRule {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenFileRepoResolveIntegrationTest.groovy

        }
    
        void "uses artifactUrls to resolve artifacts"() {
            given:
            def moduleA = mavenRepo().module('group', 'projectA', '1.2')
            def moduleB = mavenRepo().module('group', 'projectB', '9.1')
            moduleA.publish()
            moduleB.publish()
    
            def artifactsRepo = mavenRepo('artifactsRepo')
            // Create a module to get the correct module directory, but do not publish the module
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java-library/module-disabled/kotlin/src/main/java/module-info.java

    module org.gradle.sample {
        requires com.google.gson;          // real module
        requires org.apache.commons.lang3; // automatic module
        // commons-cli-1.4.jar is not a module and cannot be required
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 208 bytes
    - Viewed (0)
  7. platforms/jvm/ear/src/integTest/groovy/org/gradle/plugins/ear/EarPluginIntegrationTest.groovy

            then:
            def appXml = new XmlSlurper().parse(
                file('unzipped/META-INF/application.xml'))
            def modules = appXml.module
            modules[0].ejb.text() == 'moduleA.jar'
            modules[1].web.'web-uri'.text() == 'moduleB.war'
        }
    
        void "uses content from application xml located #location"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/local/model/LocalComponentGraphResolveStateFactoryTest.groovy

            conf.exclude([group: "group1", module: "module1"])
            child.exclude([group: "group2", module: "module2"])
    
            expect:
            def config = state.getConfiguration("child").metadata
            def excludes = config.excludes
            config.excludes*.moduleId.group == ["group2", "group1"]
            config.excludes*.moduleId.name == ["module2", "module1"]
            config.excludes.is(excludes)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/testing/patch-module/groovy/src/main/java/module-info.java

    module org.gradle.sample {
        exports org.gradle.sample;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 60 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/testing/patch-module/groovy/src/test/java/module-info.java

    open module org.gradle.sample {
        exports org.gradle.sample;
        requires org.junit.jupiter.api;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 101 bytes
    - Viewed (0)
Back to top