Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 216 for Here (0.17 sec)

  1. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/extensions/MultiTestLifecycleSpec.groovy

            expect:
            false
        }
    
        static class SampleRule extends ExternalResource {
            private final String name
    
            // We add a constructor parameter here, so this class can't be instantiated by the default constructor.
            // This way we can test if the class has been initialized correctly by Spock.
            SampleRule(String name) {
                this.name = name
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/failure/mappers/OpenTestAssertionFailedMapper.java

        }
    
        private static TestFailure mapStringBasedComparisonFailure(Throwable throwable, @Nullable Object expected, @Nullable Object actual) throws Exception {
            // We call here the handy getFilePathOrString method which optionally could handle FileInfo,
            // but in this case it will just return the string representation of the value
            String actualString = getFilePathOrString(actual);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:48:53 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/release/notes-template.md

    For Java, Groovy, Kotlin, and Android compatibility, see the [full compatibility notes](userguide/compatibility.html).   
    
    ## New features and usability improvements
    
    <!-- Do not add breaking changes or deprecations here! Add them to the upgrade guide instead. -->
    
    <!--
    
    ================== TEMPLATE ==============================
    
    <a name="FILL-IN-KEY-AREA"></a>
    ### FILL-IN-KEY-AREA improvements
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 14:04:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/release/notes.md

    For Java, Groovy, Kotlin, and Android compatibility, see the [full compatibility notes](userguide/compatibility.html).   
    
    ## New features and usability improvements
    
    <!-- Do not add breaking changes or deprecations here! Add them to the upgrade guide instead. -->
    
    <!--
    
    ================== TEMPLATE ==============================
    
    <a name="FILL-IN-KEY-AREA"></a>
    ### FILL-IN-KEY-AREA improvements
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:16:40 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/ModelContainer.java

         */
        <S> S fromMutableState(Function<? super T, ? extends S> factory);
    
        /**
         * DO NOT USE THIS METHOD. It is here to provide some specific backwards compatibility.
         */
        <S> S forceAccessToMutableState(Function<? super T, ? extends S> factory);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/NoIsolationWorkerFactory.java

                            });
                        } finally {
                            //TODO the async work tracker should wait for children of an operation to finish first.
                            //It should not be necessary to call it here.
                            workerExecutor.await();
                        }
                        return result;
                    });
                }
            };
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:17:07 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/compatibility.adoc

    // limitations under the License.
    
    [[compatibility]]
    = Compatibility Matrix
    
    The sections below describe Gradle's compatibility with several integrations.
    Versions not listed here may or may not work.
    
    == Java
    A Java version between 8 and 22 is required to execute Gradle.
    Java 23 and later versions are not yet supported.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 03:35:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. testing/integ-test/src/crossVersionTest/groovy/org/gradle/integtests/TaskTransitiveSubclassingBinaryCompatibilityCrossVersionSpec.groovy

            file("plugin/src/main/groovy/CustomBaseJavaExec.groovy") << """
                import org.gradle.api.tasks.JavaExec
    
                class CustomBaseJavaExec extends JavaExec {
                    // no setArgs overridden here
                }
            """
            file("settings.gradle") << """
                pluginManagement {
                    repositories {
                        maven {
                            url file('plugin/build/repo')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/enterprise/core/GradleEnterprisePluginManager.java

            if (adapter != null) {
                adapter.buildFinished(buildFailure);
            }
        }
    
        /**
         * This should never happen due to the auto apply behavior.
         * It's only here as a kind of safeguard or fallback.
         */
        public void registerMissingPluginWarning(GradleInternal gradle) {
            if (gradle.isRootBuild()) {
                StartParameter startParameter = gradle.getStartParameter();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/services/CachesCleaner.kt

            fileSystemOperations.removeCachedScripts(workerDir.dir("caches").asFile)
    
            // Remove script caches from TestKit integTest temp dir
            // location defined in TempTestKitDirProvider, copied here
            val testKitTmpDir = File(File(System.getProperty("java.io.tmpdir")), String.format(".gradle-test-kit-%s", System.getProperty("user.name")))
            fileSystemOperations.removeCachedScripts(File(testKitTmpDir, "caches"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 12:45:57 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top