Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 326 for Sall (0.03 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolveException.java

     * <strong>This type should only be extended and/or thrown by Gradle internal code.</strong>
     */
    @Contextual
    @HasInternalProtocol
    public class ResolveException extends DefaultMultiCauseException {
    
        /**
         * Do not call this constructor.
         *
         * @deprecated This constructor will be removed in 9.0
         */
        @Deprecated
        public ResolveException(String message, Throwable cause) {
            super(message, cause);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/archive/ZipEntry.java

        String getName();
    
        /**
         * This method or {@link #withInputStream(IoFunction)} ()} may or may not support being called more than
         * once per entry.  Use {@link #canReopen()} to determine if more than one call is supported.
         */
        byte[] getContent() throws IOException;
    
        /**
         * Declare an action to be run against this ZipEntry's content as a {@link InputStream}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:00 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/AbstractCodeQualityPlugin.java

            extensionMapping.map("sourceSets", Callables.returning(new ArrayList<>()));
            extensionMapping.map("reportsDir", new Callable<File>() {
                @Override
                public File call() {
                    return project.getExtensions().getByType(ReportingExtension.class).file(getReportName());
                }
            });
            withBasePlugin(new Action<Plugin>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/transformation/OriginReplacementTest.kt

    import kotlin.test.Test
    import kotlin.test.assertEquals
    
    
    object OriginReplacementTest {
        @Test
        fun `replaces configured object access and function call receiver`() {
            with(resolution("configuring { property = value() }")) {
                val assignment = assignments.single()
                val lhs = replaceInnerReceiverWithTopLevel(assignment.lhs.receiverObject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:31:36 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/DependencyCollectorFunctionExtractorAndRuntimeResolver.kt

                override fun invoke(receiver: Any): DependencyCollector = getterFunction.call(receiver) as DependencyCollector
            }
    
            data class Property(val property: KProperty<*>) : DependencyCollectorAccessor {
                override fun invoke(receiver: Any): DependencyCollector = property.call(receiver) as DependencyCollector
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/ExclusiveCacheAccessCoordinator.java

         *
         * <p>This method is re-entrant, so that an action can call back into this method.</p>
         *
         * <p>Note: this method differs from {@link #withFileLock(Supplier)} in that this method also blocks other threads from this process and all threads from other processes from accessing the cache.</p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/initialization/GradlePropertiesController.java

         */
        void loadGradlePropertiesFrom(File settingsDir, boolean setSystemProperties);
    
        /**
         * Unloads the properties so the next call to {@link #loadGradlePropertiesFrom(File, boolean)} would reload them and
         * re-evaluate any property defining system properties and environment variables.
         */
        void unloadGradleProperties();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:05 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/AddSoftwareTypesAsExtensionsPluginTargetTest.groovy

            1 * target.getExtensions() >> extensions
            1 * softwareType.modelPublicType() >> Foo.class
            1 * softwareType.name() >> "foo"
            1 * propertyValue.call() >> foo
            1 * extensions.add(Foo.class, "foo", foo)
    
            and:
            1 * delegate.applyImperative(null, plugin)
        }
    
        def "does not add software types for plugins that are not registered"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/InstrumentingClassLoader.java

        byte[] instrumentClass(@Nullable String className, @Nullable ProtectionDomain protectionDomain, byte[] classfileBuffer);
    
        /**
         * This is called by the agent if a throwable is thrown while instrumenting a class during the call of the {@link #instrumentClass(String, ProtectionDomain, byte[])} method,
         * or anywhere else in the agent. Throwing an exception from this method has no effect on the class loading.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ExecutorPolicy.java

         *
         * The Callable's call() needs to be called from this method.
         */
        <T> T onExecute(Callable<T> command) throws Exception;
    
        /**
         * Special behavior after an executor is stopped.
         *
         * This is called after the underlying Executor has been stopped.
         */
        void onStop();
    
        /**
         * Runs the Runnable, catches all Throwables and logs them.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top