Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 267 for light (0.04 sec)

  1. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/caching/internal/operations/BuildCacheRemoteStoreBuildOperationType.java

             */
            long getArchiveSize();
    
        }
    
        public interface Result {
    
            /**
             * Whether the entry has actually been stored.
             * <p>
             * The cache might not store some entries, e.g. when they are too large.
             */
            boolean isStored();
    
        }
    
        private BuildCacheRemoteStoreBuildOperationType() {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 09:42:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. subprojects/core/src/testFixtures/groovy/org/gradle/internal/classpath/intercept/ThreadLocalInterceptorSet.groovy

        }
    
        void substituteForCurrentThread(T substitution) {
            if (threadLocalDecorators.get() != original) {
                throw new IllegalStateException("already substituted for the current thread; proper cleanup might have been missed")
            }
            substitutions.incrementAndGet()
            threadLocalDecorators.set(substitution)
        }
    
        void cancelSubstitutionForCurrentThread() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 16:29:37 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultTextArea.java

        private final AnsiExecutor ansiExecutor;
    
        public DefaultTextArea(AnsiExecutor ansiExecutor) {
            this.ansiExecutor = ansiExecutor;
        }
    
        /**
         * Returns the bottom right position of this text area.
         */
        public Cursor getWritePosition() {
            return writePos;
        }
    
        public void newLineAdjustment() {
            writePos.row++;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/software/publish/src/main/java/org/gradle/api/publish/VersionMappingStrategy.java

    import org.gradle.internal.HasInternalProtocol;
    
    /**
     * The version mapping strategy for a publication. By default,
     * Gradle will use the declared versions of a dependency directly. However
     * in some situations it might be better to publish the resolved versions, or both
     * when the metadata format supports it.
     *
     * @since 5.2
     */
    @HasInternalProtocol
    public interface VersionMappingStrategy {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. testing/precondition-tester/src/test/groovy/org/gradle/test/precondition/PreconditionProbingTest.groovy

                return Class.forName(className) as Class<? extends TestPrecondition>
            } catch (ClassNotFoundException ex) {
                final String message = String.format(
                    "Class '%s' cannot be found. You might be missing a dependency in 'subprojects/predicate-tester/builds.gradle.kts'?",
                    className
                )
                throw new RuntimeException(message, ex)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedValueFactory.java

        <T> CalculatedValue<T> create(DisplayName displayName, Supplier<? extends T> supplier);
    
        /**
         * A convenience to create a calculated value that has already been produced.
         * <p>
         * For example, the value might have been restored from the configuration cache.
         */
        <T> CalculatedValue<T> create(DisplayName displayName, T value);
    
        /**
         * Creates a cache backed by calculated values.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/isolation/IsolatedActionSerializer.kt

    class SerializedIsolatedActionGraph<G>(
        /**
         * The serialized graph.
         */
        val graph: ByteArray,
    
        /**
         * External references that are not serialized directly as part of the [graph].
         * These might include references to classes, value sources and build services.
         *
         * Maps the integer written to the serialized [graph] to the external reference.
         * See [EnvironmentEncoder] and [EnvironmentDecoder] for details.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/SourceDistributionProvider.kt

                "0" -> {
                    // When testing against a `major.0` snapshot we need to take into account
                    // that source distributions matching the major version might not have
                    // been published yet. In that case we adjust the constraint to include
                    // source distributions beginning from the previous major version.
                    "${previous(major)}.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingSet.java

            for (int i = 0; i < result.length; ++i) {
                // The elements of result have to be of some subtype of E because of Set's invariant,
                // so the inner cast is safe. The outer cast might be problematic if T is a some subtype
                // of E and the factory function returns some other subtype. However, this is unlikely
                // to happen in our use cases. Only System.getProperties().entrySet implementation uses
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/binding/StructBindings.java

         * viewed as. In other words this is the full list of interfaces that a view proxy class generated for this struct type might implement.
         *
         * <p>Note: currently view proxies also implement any interfaces implemented by the delegate type. The set returned by this method
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top