Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 721 for Sall (0.03 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/GroovyCallInterceptorsProvider.java

                } catch (ClassNotFoundException e) {
                    throw new RuntimeException(e);
                }
            }
    
            /**
             * @param interceptorsProviderClass the class providing the Groovy call interceptors.
             * It must have a method that follows the pattern: {@code public static List<CallInterceptor> getCallInterceptors()}
             */
            @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 13:46:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/caching/internal/controller/impl/LifecycleAwareBuildCacheControllerFactory.java

     *
     * <p>The implementation provides the following behavior:
     *
     * <ul>
     *     <li>All builds in the tree use the root build's cache configuration, once that configuration is available (ie the root build's settings have been evaluated).</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:28:13 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/messaging/WorkerConfig.java

    import org.gradle.internal.remote.internal.inet.MultiChoiceAddress;
    import org.gradle.process.internal.worker.WorkerProcessContext;
    
    import java.io.Serializable;
    
    /**
     * All configuration options to be transferred to a worker process during worker startup.
     */
    public class WorkerConfig {
        private final LogLevel logLevel;
        private final boolean publishJvmMemoryInfo;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. testing/architecture-test/src/test/java/org/gradle/architecture/test/XmlFactoriesTest.java

    import static com.tngtech.archunit.lang.syntax.ArchRuleDefinition.noClasses;
    
    @AnalyzeClasses(packages = "org.gradle")
    public class XmlFactoriesTest {
    
        private static final String RATIONALE = "for security reasons, all XML factories creation should go through " + XmlFactories.class.getName();
    
        private static final List<Class<?>> xmlFactoryClasses = Arrays.asList(
            DocumentBuilderFactory.class,
            SAXParserFactory.class,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    To stop running Daemon processes, use the following command:
    
    ----
    $ gradle --stop
    ----
    
    This terminates all Daemon processes started with the same version of Gradle used to execute the command.
    
    You can also kill Daemons manually with your operating system.
    To find the PIDs for all Daemons regardless of Gradle version, see <<gradle_daemon.adoc#find_all_daemons,Find Daemons>>.
    
    [[sec:daemon_jvm_criteria]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonStateControl.java

         *
         * <p>If any long running command is currently running, the blocked call to {@link #runCommand} will fail with {@link DaemonStoppedException}.</p>
         *
         * <p>The daemon will stop accepting new work, so that subsequent calls to {@link #runCommand} will failing with {@link DaemonUnavailableException}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/ChainingHttpHandler.java

                    }
                    handlers.clear();
                    completed = true;
                }
                if (!failures.isEmpty()) {
                    throw new DefaultMultiCauseException("Failed to handle all HTTP requests.", failures);
                }
            } finally {
                lock.unlock();
            }
        }
    
        @Override
        public void resetExpectations() {
            cancelBlockedRequests();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/schemaFromConfiguringFunctions.kt

    /**
     * Provides type discovery via functions that return an object or configure an object accepting a lambda as the last parameter
     * (via [org.gradle.api.Action] or a Kotlin function type, see [gradleConfigureLambdas]).
     *
     * All configured or returned types that appear in [isPublicAndRestricted]-matching will be discovered (for now, regardless of actual function semantics).
     */
    internal
    class TypeDiscoveryFromRestrictedFunctions : AnalysisSchemaComponent {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryConcurrencyTest.groovy

                    assert registry.getFactory(Integer).create() == 12
                    assert registry.getFactory(String).create() == "123"
                }
            }
        }
    
        def "multiple threads can locate all services"() {
            def registry = new DefaultServiceRegistry()
            registry.addProvider(new ServiceRegistrationProvider() {
                @Provides
                String createString(Integer value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/process/internal/CurrentProcess.java

            // TODO(mlopatkin) figure out a nicer way of handling the presence of agent in the foreground daemon.
            //  Currently it is hard to have a proper "-javaagent:/path/to/jar" in clients that start the daemon, so all code deals with a boolean flag shouldApplyAgent instead.
            //  It is also possible to have the agent attached at runtime, without the flag, so flag checking is preferred.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top