Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 267 for light (0.2 sec)

  1. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/tasks/AbstractPublishToMaven.java

                .withPathSensitivity(PathSensitivity.NAME_ONLY);
    
            // Should repositories be able to participate in incremental?
            // At the least, they may be able to express themselves as output files
            // They *might* have input files and other dependencies as well though
            // Inputs: The credentials they need may be expressed in a file
            // Dependencies: Can't think of a case here
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/FilePermissions.java

     * </ul>
     * <p>
     * For further details on specific permission for a certain class of user see {@link UserClassFilePermissions}, but in essence
     * each class of users can have the right to READ, WRITE or EXECUTE files.
     * <p>
     * The default permissions used differ between files and directories and are as follows:
     * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-tooling-builders/src/test/kotlin/org/gradle/kotlin/dsl/tooling/builders/CommonListPrefixTest.kt

        }
    
        @Test
        fun `doesn't choke on left being larger than right`() {
    
            val a = listOf("a", "b", "c", "0", "1", "d")
            val b = listOf("a", "b", "c", "3", "d")
    
            assertThat(
                commonPrefixOf(listOf(a, b)),
                equalTo(listOf("a", "b", "c"))
            )
        }
    
        @Test
        fun `doesn't choke on right being larger than left`() {
    
            val a = listOf("a", "b", "c", "0", "d")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/DefaultProcessWorkerSpec.java

        }
    
        /**
         * Inherit as little as possible from the parent process' environment.
         *
         * On Unix systems we need to pass a few environment variables to make sure
         * the file system is accessed with the right encoding.
         */
        private static Map<String, Object> sanitizeEnvironment(JavaForkOptions forkOptions) {
            if (!OperatingSystem.current().isUnix()) {
                return ImmutableMap.of();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. subprojects/core/src/testFixtures/groovy/org/gradle/util/ports/AbstractAvailablePortAllocator.groovy

        }
    
        private ReservedPortRange reservePortRange() {
            def portRange = getNextPortRange(reservations.size())
            ReservedPortRange range = portRangeFactory.getReservedPortRange(portRange.left, portRange.right)
            reservations.add(range)
            return range
        }
    
        protected abstract Pair<Integer, Integer> getNextPortRange(int rangeNumber)
    
        private void releaseRange(ReservedPortRange range) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 05 16:58:31 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/mvnsettings/DefaultLocalMavenRepositoryLocator.java

            return !file.isAbsolute() && file.getPath().startsWith(File.separator);
        }
    
        // We only cache the result of parsing the Maven settings files, but allow this value to be updated in-flight
        // via system properties. This allows the local maven repo to be overridden when publishing to maven
        // (see http://forums.gradle.org/gradle/topics/override_location_of_the_local_maven_repo).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/services/BuildService.java

     * some state that tasks use to do their work. A service implementation might hold, for example, an in-memory cache that tasks use
     * to improve performance. Or, as another example, a service implementation might represent a web service that the build starts and
     * uses.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 21 20:09:51 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  8. build.gradle.kts

        id("gradlebuild.lifecycle")                  // CI: Add lifecycle tasks to for the CI pipeline (currently needs to be applied early as it might modify global properties)
        id("gradlebuild.generate-subprojects-info")  // CI: Generate subprojects information for the CI testing pipeline fan out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 11:54:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/FlushOutputEvent.java

     * limitations under the License.
     */
    
    package org.gradle.internal.logging.events;
    
    import org.gradle.api.logging.LogLevel;
    
    import javax.annotation.Nullable;
    
    /**
     * Notifies output consumers that might be queueing messages to immediately flush their queues.
     */
    public class FlushOutputEvent extends OutputEvent implements InteractiveEvent {
        @Nullable
        @Override
        public LogLevel getLogLevel() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 00:09:24 UTC 2024
    - 1015 bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/PluginResolutionResult.java

         *
         * @param sourceDescription a description of the source of plugins, where the plugin requested could not be found
         * @param notFoundMessage message on why the plugin couldn't be found (e.g. it might be available by a different version)
         */
        public static PluginResolutionResult notFound(String sourceDescription, String notFoundMessage) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top