Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 223 for Sall (0.04 sec)

  1. platforms/documentation/docs/build.gradle

                displayName = "Aggregating test results of an application/distribution (Incubating)"
                description = "Report all test results using the application/distribution of a multi-module project."
                category = "Java"
                common {
                    from(templates.javaApplicationAsSubproject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonBuildOptions.java

            public PriorityOption() {
                super(GRADLE_PROPERTY, CommandLineOptionConfiguration.create("priority", "Specifies the scheduling priority for the Gradle daemon and all processes launched by it. Values are 'normal' (default) or 'low'"));
            }
    
            @Override
            public void applyTo(String value, DaemonParameters settings, Origin origin) {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 19:00:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactoryTest.groovy

            classpath.implementationModulepath.isEmpty()
    
            0 * classDetectorFactory._
        }
    
        def "loads all framework dependencies from distribution even if some are already available with matching jar names"() {
            when:
            def cpFiles = cp.collect { new File("$it-1.0.jar") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/services/internal/DefaultBuildServicesRegistry.java

                            preserved.add(serviceRegistration);
                        }
                    }).rethrow();
                } finally {
                    // Replace the entire container, rather than clear it, to discard all the service instances and because it may contain configuration actions and
                    // other state that can affect the service instances when they are registered again
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:45 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. .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)
Back to top