Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 268 for light (0.05 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/InstrumentedMetaClass.java

     * limitations under the License.
     */
    
    package org.gradle.internal.metaobject;
    
    /**
     * An implementation of a Groovy MetaClass that is instrumented and might need to cancel some optimizations
     * in order to get the instrumentation to work properly.
     */
    public interface InstrumentedMetaClass {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 10:01:06 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/CompositeClassTransform.java

        @Override
        public Pair<RelativePath, ClassVisitor> apply(ClasspathEntryVisitor.Entry entry, ClassVisitor visitor, ClassData classData) throws IOException {
            return first.apply(entry, second.apply(entry, visitor, classData).right, classData);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 08:17:26 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/internal/accesscontrol/ForExternalUse.java

     * This is due to the contract of this public API that is stricter than what is expected in the Gradle internals.
     * <p>
     * For example, the implementation of such an API might add validations checking third-party
     * plugins or build scripts for compliance with some limitations imposed by Gradle. In the internal
     * code, one does not expect such limitations.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 22 03:06:57 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultProviderFactory.java

            return credentialsProviderFactory.provide(credentialsType, identity);
        }
    
        @Override
        public <A, B, R> Provider<R> zip(Provider<A> left, Provider<B> right, BiFunction<? super A, ? super B, ? extends R> combiner) {
            return left.zip(right, combiner);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/FileSystemExtensions.kt

            val hasher = Hashing.newHasher()
            // This routine is used to snapshot results of File.list(), File.listFiles() and similar calls.
            // Technically, the relative order or entries is visible to the caller, so it might be considered when computing the hash.
            // However, the File.list spec leaves the order undefined, so no reasonable implementation should depend on it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:55:36 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/DefaultPhasedActionResultListenerTest.groovy

        def buildFinishedHandler = Mock(IntermediateResultHandler)
        def listener = new DefaultPhasedActionResultListener(projectsLoadedHandler, buildFinishedHandler)
    
        def "right handler is called"() {
            when:
            listener.onResult(new ProjectsLoadedResult<String>('result1'))
            listener.onResult(new BuildFinishedResult<String>('result2'))
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-plugins/src/main/kotlin/org/gradle/kotlin/dsl/plugins/embedded/EmbeddedKotlinPlugin.kt

            warn(
                """
                    WARNING: Unsupported Kotlin plugin version.
                    The `embedded-kotlin` and `kotlin-dsl` plugins rely on features of Kotlin `{}` that might work differently than in the requested version `{}`.
                """.trimIndent(),
                embeddedKotlinVersion,
                kotlinVersion
            )
        }
    }
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 23 00:40:48 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/WorkInProgressRenderer.java

                attach(unassignedProgressOperations.pop());
            }
        }
    
        // Declares that we are stopping showing updates from this ProgressOperation.
        // We might be completely done following this ProgressOperation, or
        // we might simply be waiting for its children to complete.
        private void unshow(ProgressOperation operation) {
            OperationIdentifier operationId = operation.getOperationId();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanConstructors.kt

                Class.forName(superclass.name, true, superclass.classLoader)
                maybeInit(superclass)
            }
        }
    
        // TODO: What about the runtime decorations a serialized bean might have had at configuration time?
        private
        fun newConstructorForSerialization(beanType: Class<*>, constructor: Constructor<*>): Constructor<out Any> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/initialization/layout/ResolvedBuildLayout.java

            return cacheBuilderFactory.getRootDir();
        }
    
        /**
         * Is the build using an empty settings because a build definition is missing from the current directory?
         *
         * <p>There are two cases where this might be true: Gradle was invoked from a directory where there is no build script and no settings script in the directory hierarchy,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top