Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 205 for composite_ (0.48 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationDefaultsIntegrationTest.groovy

                    project(":producer", "test:producer:") {
                        module("org:default-dependency:1.0")
                    }
                }
            }
        }
    
        def "can use defaultDependencies in a composite build"() {
            buildTestFixture.withBuildInSubDir()
    
            def producer = singleProjectBuild("producer") {
                buildFile << """
        apply plugin: 'java'
    
        repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeMultipleCppProjectIntegrationTest.groovy

        }
    
        @Ignore("https://github.com/gradle/gradle-native-private/issues/274")
        def "can create xcode project for C++ application inside composite build"() {
            given:
            settingsFile.text = """
                includeBuild 'greeter'
                rootProject.name = '${rootProjectName}'
            """
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/DefaultRepositoryHandler.java

            }
    
            @Override
            public ExclusiveContentRepository filter(Action<? super InclusiveRepositoryContentDescriptor> config) {
                filter = filter == null ? config : Actions.composite(filter, config);
                return this;
            }
    
            void apply(Action<? super ExclusiveContentRepository> action) {
                action.execute(this);
                if (forRepositories.isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/IsolatedProjectsSafeIdeaModelBuilder.java

    import org.gradle.api.internal.GradleInternal;
    import org.gradle.api.internal.project.ProjectInternal;
    import org.gradle.internal.build.BuildState;
    import org.gradle.internal.build.IncludedBuildState;
    import org.gradle.internal.composite.IncludedBuildInternal;
    import org.gradle.plugins.ide.idea.IdeaPlugin;
    import org.gradle.plugins.ide.idea.internal.IdeaModuleSupport;
    import org.gradle.plugins.ide.idea.internal.IdeaProjectInternal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:17:44 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporter.java

                case FORCED:
                    return "Forced";
                case CONFLICT_RESOLUTION:
                    return "By conflict resolution";
                case COMPOSITE_BUILD:
                    return "By composite build";
                case REJECTION:
                    return "Rejection";
                case CONSTRAINT:
                    return "By constraint";
                case BY_ANCESTOR:
                    return "By ancestor";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/DeclarativeDslTestProjectGenerator.groovy

            }
    
            if (config.compositeBuild) {
                throw new IllegalArgumentException("Template ${config.templateName} doesn't support composite builds")
            }
        }
    
        def generate(File outputBaseDir) {
            def rootProjectDir = new File(outputBaseDir, config.projectName)
            rootProjectDir.mkdirs()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 11 07:05:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/plugin/devel/variants/TargetJVMVersionOnPluginTooNewFailureDescriberIntegrationTest.groovy

            failure.assertHasResolution("Run this build using a Java $tooHighJava or newer JVM.")
        }
    
        def 'JVM version too low uses custom error message for plugin when using composite build'() {
            given:
            def currentJdk = Jvm.current()
            def otherJdk = AvailableJavaHomes.differentVersion
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 20:48:53 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. subprojects/core/build.gradle.kts

        }
        testFixturesRuntimeOnly(project(":workers")) {
            because("This is a core extension module (see DynamicModulesClassPathProvider.GRADLE_EXTENSION_MODULES)")
        }
        testFixturesRuntimeOnly(project(":composite-builds")) {
            because("We always need a BuildStateRegistry service implementation")
        }
    
        testImplementation(project(":dependency-management"))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.h

    #include "tensorflow/compiler/mlir/quantization/stablehlo/ops/stablehlo_op_quant_spec.h"
    #include "tensorflow/core/framework/types.pb.h"
    
    namespace mlir::quant::stablehlo {
    
    // Checks whether an op is connected with a quantized composite function. If
    // not, the same-scale op will not be quantized. This decision is based on the
    // current assumption that the performance gain of the same-scale op itself
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildPathAssignmentIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.composite
    
    import org.gradle.initialization.BuildIdentifiedProgressDetails
    import org.gradle.integtests.fixtures.BuildOperationsFixture
    import org.gradle.integtests.fixtures.build.BuildTestFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 09:41:26 UTC 2023
    - 13.4K bytes
    - Viewed (0)
Back to top