Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 402 for multis (0.24 sec)

  1. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/settings_file_basics.adoc

    image::gradle-basic-3.png[]
    
    The primary purpose of the _settings file_ is to add subprojects to your build.
    
    Gradle supports single and multi-project builds.
    
    - For single-project builds, the settings file is optional.
    - For multi-project builds, the settings file is mandatory and declares all subprojects.
    
    [[sec:settings_file_script]]
    == Settings script
    
    The settings file is a script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/AbstractSourceDependencyMultiprojectIntegrationTest.groovy

                        assert configurations.conf.files.collect { it.name } == expectedResult
                    }
                }
            """
        }
    
        @ToBeFixedForConfigurationCache
        def "can resolve subproject of multi-project source dependency"() {
            mappingFor(repo, "org.test:foo")
            buildFile << """
                dependencies {
                    conf 'org.test:foo:latest.integration'
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/consumer/simple/pom.xml

      <groupId>org.sonatype.mavenbook.multi</groupId>
      <artifactId>parent</artifactId>
      <version>0.9-${changelist}-SNAPSHOT</version>
      <packaging>pom</packaging>
      <name>Multi Chapter Parent Project</name>
    
      <!-- Optimized from https://github.com/sonatype/maven-example-en/tree/master/examples/ch-multi -->
      <modules>
        <module>simple-parent</module>
      </modules>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 28 17:17:10 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/readme-templates/library-body.adoc.template

    This is achieved by setting a top-level `version` property in the build script:
    
    .build.gradle.kts
    [source.multi-language-sample,kotlin]
    ----
    version = "0.1.0"
    ----
    
    .build.gradle
    [source.multi-language-sample,groovy]
    ----
    version = '0.1.0'
    ----
    
    
    [NOTE]
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  5. pkg/config/mesh/watcher_test.go

    }
    
    func TestMultiWatcherShouldNotifyHandlers(t *testing.T) {
    	watcherShouldNotifyHandlers(t, true)
    }
    
    func watcherShouldNotifyHandlers(t *testing.T, multi bool) {
    	path := newTempFile(t)
    
    	m := mesh.DefaultMeshConfig()
    	writeMessage(t, path, m)
    
    	w := newWatcher(t, path, multi)
    	assert.Equal(t, w.Mesh(), m)
    
    	doneCh := make(chan struct{}, 1)
    
    	var newM *meshconfig.MeshConfig
    	w.AddMeshHandler(func() {
    		newM = w.Mesh()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/consumer/simple/simple-parent/simple-webapp/pom.xml

      <modelVersion>4.0.0</modelVersion>
      <parent>
        <groupId>org.sonatype.mavenbook.multi</groupId>
        <artifactId>simple-parent</artifactId>
      </parent>
    
      <artifactId>simple-webapp</artifactId>
      <name>Multi Chapter Simple Web Application Project</name>
      <dependencies>
        <dependency>
          <groupId>org.sonatype.mavenbook.multi</groupId>
          <artifactId>simple-weather</artifactId>
        </dependency>
      </dependencies>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 28 17:17:10 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classloader/TransformReplacerTest.groovy

        private static final byte[] INSTRUMENTED_CLASS = new byte[]{2}
        private static final byte[] INSTRUMENTED_VERSIONED_CLASS = new byte[]{20}
    
        def "replaces original class with transformed in non-multi-release JAR"() {
            given:
            def original = jar(testDir.file("original.jar")) {
                manifest {}
    
                entry("Foo.class", ORIGINAL_CLASS)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/ClasspathElementTransformForAgent.java

                    // If the original JAR is not multi-release, we don't need the manifest in the transformed JAR at all.
                    return;
                }
                isMultiReleaseJar = true;
    
                // We want the transformed JAR to also be a proper multi-release JAR.
                // To do so it must have the "Multi-Release: true" attribute.
                // "Manifest-Version" attribute is also required.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r213/ModelsWithGradleProjectCrossVersionSpec.groovy

            hasProject(gradleProjects, rootSingle, ':', 'A')
    
            where:
            modelType << buildScopedModels
        }
    
        def "ProjectConnection provides all GradleProjects for root of multi-project build"() {
            when:
            def gradleProjects = getGradleProjectsWithProjectConnectionUsingBuildModel(rootMulti, modelType)
    
            then:
            gradleProjects.size() == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/builder/testdata/multi-rules-new-chain-v4-restore.golden

    Leonardo Sarra <******@****.***> 1718116194 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 135 bytes
    - Viewed (0)
Back to top