Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 744 for New (0.02 sec)

  1. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/JavaBasePluginTest.groovy

            set.resources.srcDirs == toLinkedSet(project.file('src/custom/resources'))
            set.java.destinationDirectory.set(new File(project.buildDir, 'classes/java/custom'))
            set.output.resourcesDir == new File(project.buildDir, 'resources/custom')
            set.output.generatedSourcesDirs.files == toLinkedSet(new File(project.buildDir, 'generated/sources/annotationProcessor/java/custom'))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceTest.groovy

        ]
    
        @Rule
        HttpServer server = new HttpServer()
        @Rule
        TestNameTestDirectoryProvider tempDir = new TestNameTestDirectoryProvider(getClass())
    
        BuildCacheServiceFactory.Describer buildCacheDescriber
        HttpClientHelper.Factory httpClientHelperFactory = HttpClientHelper.Factory.createFactory(new DocumentationRegistry())
    
        def key = new TestBuildCacheKey(0x01234567abcdef)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/configuration/DefaultScriptPluginFactoryTest.groovy

        def classpathHasher = Mock(ClasspathHasher)
        def autoAppliedPluginHandler = Mock(AutoAppliedPluginHandler)
        def compileOperationsFactory = new DefaultCompileOperationFactory(documentationRegistry)
    
        def factory = new DefaultScriptPluginFactory(
            new DefaultServiceRegistry(),
            scriptCompilerFactory,
            loggingManagerFactory,
            autoAppliedPluginHandler,
            pluginRequestApplicator,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 09 15:05:17 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestFilteringIntegrationTest.groovy

                        throw new RuntimeException("Boo!");
                    }
                }
            """
            file("src/test/java/org/gradle/OtherTest.java") << """
                package org.gradle;
                ${testFrameworkImports}
                public class OtherTest {
                    @Test public void pass() {}
                    @Test public void fail() { throw new RuntimeException("Boo!"); }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

        def snapshotter = new DefaultFileCollectionSnapshotter(fileSystemAccess, TestFiles.fileSystem())
        def fingerprinter = new AbsolutePathFileCollectionFingerprinter(DirectorySensitivity.DEFAULT, snapshotter, FileSystemLocationSnapshotHasher.DEFAULT)
        def executionHistoryStore = new TestExecutionHistoryStore()
        def outputChangeListener = new OutputChangeListener() {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/integtests/fixtures/publish/ModuleVersionSpec.groovy

            expectGetArtifact << new ArtifactExpectation(InteractionExpectation.GET, artifact)
        }
    
        void expectGetArtifact(Map<String, String> artifact) {
            expectGetArtifact << new ArtifactExpectation(InteractionExpectation.GET, artifact)
        }
    
        void expectHeadArtifact(String artifact = '') {
            expectGetArtifact << new ArtifactExpectation(InteractionExpectation.HEAD, artifact)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/LibrariesSourceGeneratorTest.groovy

        final CapabilityNotationParser capabilityNotationParser = new CapabilityNotationParserFactory(false).create()
        final ProviderFactory providerFactory = new DefaultProviderFactory(
            new DefaultValueSourceProviderFactory(
                new DefaultListenerManager(Scope.Build),
                TestUtil.instantiatorFactory(),
                new TestIsolatableFactory(),
                Stub(GradleProperties),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/caching/ComponentMetadataRuleExecutorTest.groovy

            }
            def cachedEntry = new CrossBuildCachingRuleExecutor.CachedEntry<ComponentMetadata>(0, implicits, cachedResult)
            def ruleServices = [:]
            def someService = Mock(SomeService)
            if (ruleClass == TestSupplierWithService) {
                ruleServices['SomeService'] = someService
            }
            def reexecute = mustRefresh || expired
            def moduleSources = new MutableModuleSources()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/BinaryConfigurationIntegrationTest.groovy

        def "can configure output file for binaries"() {
            given:
            def app = new CppHelloWorldApp()
            app.writeSources(file("src/main"))
            app.library.writeSources(file("src/hello"))
    
            and:
            buildFile << """
    apply plugin: 'cpp'
    model {
        components {
            def modPath = { File original -> new File(original.parent + "/new_output/_" + original.name) }
            main(NativeExecutableSpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApi.groovy

            validateOutput()
            result
        }
    
        void collectOutputs(LongRunningOperation op) {
            op.setStandardOutput(new TeeOutputStream(stdout, System.out))
            op.setStandardError(new TeeOutputStream(stderr, System.err))
        }
    
        def validateOutput() {
            def assertion = new ResultAssertion(0, [], false, true, true)
            assertion.validate(stdout.toString(), "stdout")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:23 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top