Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 549 for Sall (0.36 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

                // adds listeners and expects to see a build finished event. Infrastructure should not be using the public listener types
                // In addition, they almost all should be using a build tree scoped event instead of a build scoped event
    
                Throwable reportableFailure = failure;
                if (reportableFailure == null && !stageFailures.getFailures().isEmpty()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

                equalTo("file 'displayNameOf(inputFile)' has been removed")
            )
        }
    
        @Test
        fun `build input file is replaced by directory`() {
            val inputFile = File("input.txt")
            // all we care is that it is changed from the original one
            val newDirectoryHash = TestHashCodes.hashCodeFrom(2)
            val originalFileHash = TestHashCodes.hashCodeFrom(1)
            assertThat(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AvailableJavaHomes.java

            final Set<JavaVersion> remaining = Sets.newHashSet(versions);
            return getAvailableJdks(element -> remaining.remove(element.getLanguageVersion()));
        }
    
        /**
         * Returns all JDKs for the given java version.
         */
        public static List<Jvm> getAvailableJdks(final JavaVersion version) {
            return getAvailableJdks(element -> version.equals(element.getLanguageVersion()));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/tasks/SnapshotTaskInputsOperationIntegrationTest.groovy

                additionalData.asMap == [
                    'typeName' : 'CustomTask',
                    'propertyName' : 'bean'
                ]
            }
        }
    
        def "properly captures all attributes"() {
            given:
            withBuildCache()
            buildFile << """
                task customTask {
                    inputs.dir('foo')
                        .withPropertyName('inputDir')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGenerator.java

            if (result == null) {
                throw new Failure("Could not determine the opcode for intercepting the call");
            }
            return result;
        }
    
        // TODO: move validation earlier?
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:50:01 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  6. .teamcity/performance-test-durations.json

        "linux" : 472
      }, {
        "testProject" : "largeMonolithicJavaProject",
        "linux" : 201
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.java.JavaTasksPerformanceTest.tasks --all",
      "durations" : [ {
        "testProject" : "largeJavaMultiProject",
        "linux" : 506
      }, {
        "testProject" : "largeMonolithicJavaProject",
        "linux" : 204
      } ]
    }, {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:30:45 UTC 2024
    - 27.9K bytes
    - Viewed (1)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

         * Contains the dependency resolution metadata for each project.
         */
        ProjectMetadata(false),
        BuildFingerprint(true),
        ProjectFingerprint(true),
    
        /**
         * The index file that points to all of these things
         */
        Entry(false)
    }
    
    
    internal
    interface ConfigurationCacheStateFile {
        val exists: Boolean
        val stateType: StateType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

            try {
                deleteDir();
            } catch (RuntimeException e) {
                // Ignore
            }
            return this;
        }
    
        /**
         * Recursively delete this directory, reporting all failed paths.
         */
        public TestFile forceDeleteDir() throws IOException {
            if (isDirectory()) {
                if (FileUtils.isSymlink(this)) {
                    if (!delete()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonFactoryTest.groovy

            1 * buildOperationRunner.call(_)
        }
    
        def "build worker operation is finished even if worker fails"() {
            when:
            factory.getWorker(requirement).execute(spec)
    
            then:
            1 * clientsManager.reserveIdleClient(options) >> client
            1 * buildOperationRunner.call(_) >> { args -> args[0].call() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:57:50 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependenciesExtensionModule.java

     * </ul>
     * </p>
     *
     * <p>
     * There are {@code call(...)} equivalents for all the {@code add(...)} and {@code addConstraint(...)} methods in {@link DependencyCollector}.
     * </p>
     *
     * <p>
     * There are {@code call(...)} equivalents for all the {@code modify(...)} methods in {@link DependencyModifier}.
     * </p>
     *
     * @see Dependencies
     * @see DependencyCollector
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top