Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 549 for Sall (0.06 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/TypedResolveException.java

    import com.google.common.collect.ImmutableList;
    import org.gradle.api.artifacts.ResolveException;
    
    import java.util.List;
    
    /**
     * An internal specialization of the public {@link ResolveException}. All resolve exceptions thrown
     * by Gradle are assumed to be an instance of this class.
     */
    public class TypedResolveException extends ResolveException {
        private final String type;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultPersistentDirectoryStoreTest.groovy

            then:
            0 * _._
        }
    
        def "runs cleanup action when it is due"() {
            when:
            store.open()
            store.close()
    
            then:
            0 * _  // Does not call initialization or cleanup action.
            gcFile.assertIsFile()
    
            when:
            markCacheForCleanup(gcFile)
            def modificationTimeBefore = gcFile.lastModified()
            store.open()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:40:49 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/WorkerProcessContext.java

        /**
         * Returns a display name for this worker process.
         */
        String getDisplayName();
    
        /**
         * Returns the connection which can be used to send/receive messages to/from the server process. Call {@link ObjectConnection#connect()} to complete the connection.
         */
        ObjectConnection getServerConnection();
    
        ClassLoader getApplicationClassLoader();
    
        ServiceRegistry getServiceRegistry();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

            assertSuggestsViewingDocs("Use the dependencyInsight report with the --all-variants option to view all variants of the ambiguous dependency.  This report is described at https://docs.gradle.org/${GradleVersion.current().version}/userguide/viewing_debugging_dependencies.html#sec:identifying_reason_dependency_selection.")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/DataStructuralEquality.kt

     * * the source representations of the literal values (thus taking into account only the values),
     * * the error causes, thus considering all error nodes equal to each other but not to any other node.
     */
    fun DeclarativeDocument.structurallyEqualsAsData(other: DeclarativeDocument): Boolean {
        fun ValueNode.structurallyEquals(other: ValueNode): Boolean = when (this) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/DefaultTimer.java

            // System.nanoTime() can go backwards under some circumstances.
            // http://bugs.java.com/bugdatabase/view_bug.do?bug_id=6458294
            // This max() call ensures that we don't return negative durations.
            return Math.max(elapsedMillis, 0);
        }
    
        @Override
        public void reset() {
            startTime = timeSource.nanoTime();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/build.gradle.kts

    packageCycles {
        excludePatterns.add("org/gradle/**")
    }
    
    val prepareVersionsInfo = tasks.register<PrepareVersionsInfo>("prepareVersionsInfo") {
        destFile = layout.buildDirectory.file("generated-resources/all-released-versions/all-released-versions.properties")
        versions = moduleIdentity.releasedVersions.map {
            it.allPreviousVersions.joinToString(" ") { it.version }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/locklistener/FileLockContentionHandler.java

         * - The owner was already pinged about the given lock before and the lock release is in progress
         * - The ping through the underlying socket failed
         *
         * @return true if the owner was pinged in this call
         */
        boolean maybePingOwner(int port, long lockId, String displayName, long timeElapsed, @Nullable FileLockReleasedSignal signal);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 01:28:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/WellBehavedPluginTest.groovy

        }
    
        protected applyPluginUnqualified(File target = buildFile) {
            target << "apply plugin: '${getPluginName()}'\n"
        }
    
        def "does not realize all possible tasks"() {
            // TODO: This isn't done yet, we still realize many tasks
            // Eventually, this should only realize "help"
    
            Assume.assumeFalse(pluginName in [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/ConfigurationOnDemandIntegrationTest.groovy

            when:
            inDirectory("impl")
            run("build")
    
            then:
            fixture.assertProjectsConfigured(':', ':impl', ':api')
        }
    
        def "name matching execution from root evaluates all projects"() {
            createDirs("api", "impl")
            settingsFile << "include 'api', 'impl'"
            buildFile << "task foo"
    
            when:
            run("foo")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 18.7K bytes
    - Viewed (0)
Back to top