Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 310 for Sall (0.1 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. testing/architecture-test/src/changes/archunit-store/stored.rules

    no\ classes\ should\ call\ method\ RoleBasedConfigurationContainerInternal.resolvableDependencyScopeUnlocked(String)\ or\ should\ call\ method\ RoleBasedConfigurationContainerInternal.resolvableDependencyScopeUnlocked(String,\ Action)\ or\ should\ call\ method\ RoleBasedConfigurationContainerInternal.maybeCreateResolvableUnlocked(String)\ or\ should\ call\ method\ RoleBasedConfigurationContainerInternal.maybeCreateConsumableUnlocked(String)\...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 3.8K 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. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part4_gradle_plugins.adoc

    Tasks runnable from project ':app'
    ------------------------------------------------------------
    
    ...
    
    Publishing tasks
    ----------------
    publish - Publishes all publications produced by this project.
    publishToMavenLocal - Publishes all Maven publications produced by this project to the local Maven cache.
    ----
    
    A new set of publishing tasks are now available called `publish`, and `publishToMavenLocal`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 11:29:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top