Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 406 for Sall (0.07 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractContinuousIntegrationTest.groovy

                return waitingForChangesEndIndex
            }
            endOfLineIndex = endOfLineIndex + newLine.length()
            // if no new build was started, assume that this was the last build and include all output in it
            int nextBuildStart = out.indexOf(CHANGE_DETECTED_OUTPUT, endOfLineIndex)
            if (nextBuildStart == -1) {
                return out.length()
            } else {
                return endOfLineIndex
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitor.java

     * 1. NOT DEPENDS ON ANY 3RD-PARTY LIBRARIES except JDK 11.
     * 2. UPDATE build-logic/lifecycle/src/main/kotlin/PrintStackTracesOnTimeoutBuildService.kt if this class is moved to another package.
     *
     * Used to print all JVMs' thread dumps on the machine. When it starts working, the process/machine might be in a bad state (e.g. deadlock),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginManager.java

                @Override
                public void execute(PluginWithId pluginWithId) {
                    action.execute(pluginWithId.asAppliedPlugin());
                }
            };
            pluginsForId(id).all(wrappedAction);
        }
    
        private class AddPluginBuildOperation implements RunnableBuildOperation {
    
            private final Runnable adder;
            private final PluginImplementation<?> plugin;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  4. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidPluginsSmokeTest.groovy

     *
     * https://developer.android.com/studio/releases/build-tools.html
     * https://developer.android.com/studio/releases/gradle-plugin.html
     * https://androidstudio.googleblog.com/
     *
     * To run your tests against all AGP versions from agp-versions.properties, use higher version of java by setting -PtestJavaVersion=<version>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

    // Copyright 2005, Google Inc.
    // All rights reserved.
    //
    // Redistribution and use in source and binary forms, with or without
    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    // notice, this list of conditions and the following disclaimer.
    //     * Redistributions in binary form must reproduce the above
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. platforms/jvm/scala/src/main/java/org/gradle/api/plugins/scala/ScalaBasePlugin.java

            });
        }
    
        private void configureSourceSetDefaults(final ProjectInternal project, Category incrementalAnalysisCategory, final Usage incrementalAnalysisUsage) {
            javaPluginExtension(project).getSourceSets().all(sourceSet -> {
    
                ScalaSourceDirectorySet scalaSource = getScalaSourceDirectorySet(sourceSet);
                sourceSet.getExtensions().add(ScalaSourceDirectorySet.class, "scala", scalaSource);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 10:39:12 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  10. 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)
Back to top