Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for getFactor (0.33 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderConnection.java

            if (standardInput == null) {
                standardInput = SafeStreams.emptyInput();
            }
            if (Boolean.TRUE.equals(operationParameters.isEmbedded())) {
                loggingManager = sharedServices.getFactory(LoggingManagerInternal.class).create();
                loggingManager.captureSystemSources();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/InProcessGradleExecuter.java

        public static final TestFile COMMON_TMP = new TestFile(new File("build/tmp"));
    
        static {
            LoggingManagerInternal loggingManager = GLOBAL_SERVICES.getFactory(LoggingManagerInternal.class).create();
            loggingManager.start();
    
            GLOBAL_SERVICES.get(AgentInitializer.class).maybeConfigureInstrumentationAgent();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApi.groovy

            }
    
            return new ToolingApiConnector(connector, stdout, stderr)
        }
    
        private createConnector() {
            if (isolatedToolingClient != null) {
                return isolatedToolingClient.getFactory(DefaultGradleConnector).create()
            }
            return GradleConnector.newConnector() as DefaultGradleConnector
        }
    
        private void isolateFromGradleOwnBuild(DefaultGradleConnector connector) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:07:23 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/ProjectAccessorsSourceGeneratorTest.groovy

                int lineOfSubAccessor = lineOf("public ${baseName}ProjectDependency get${getterPath}() { return new ${baseName}ProjectDependency(getFactory(), create(\"${projectPath}\")); }")
                lineOfSubAccessor
            }
    
            void hasSubprojectAccessors(String... paths) {
                def expectedOrderOfAccessors = paths.sort()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/file/DefaultFileOperations.java

            ApiTextResourceAdapter.Factory textResourceAdapterFactory = services.get(ApiTextResourceAdapter.Factory.class);
            Factory<PatternSet> patternSetFactory = services.getFactory(PatternSet.class);
            Deleter deleter = services.get(Deleter.class);
            DocumentationRegistry documentationRegistry = services.get(DocumentationRegistry.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/services/LoggingServiceRegistryTest.groovy

        def providesALoggingManagerFactory() {
            given:
            def registry = LoggingServiceRegistry.newCommandLineProcessLogging()
    
            expect:
            def factory = registry.getFactory(LoggingManagerInternal.class)
            factory instanceof DefaultLoggingManagerFactory
        }
    
        def providesAStyledTextOutputFactory() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/DefaultCommandLineActionFactory.java

                } catch (CommandLineArgumentException e) {
                    // Ignore, deal with this problem later
                }
    
                LoggingManagerInternal loggingManager = loggingServices.getFactory(LoggingManagerInternal.class).create();
                loggingManager.setLevelInternal(loggingConfiguration.getLogLevel());
                loggingManager.start();
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar

    LogConfigurationExce; public abstract Log getInstance(String) throws LogConfigurationExce; public abstract void release(); public abstract void removeAttribute(String); public abstract void setAttribute(String, Object); public static LogFactory getFactory() throws LogConfigurationExce; public static Log getLog(Class) throws LogConfigurationExce; public static Log getLog(String) throws LogConfigurationExce; public static void release(ClassLoader); public static void releaseAll(); protected static...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

                // GENERATE public <type> <getter>() {
                //     if (<field> == null) {
                //         <field> = getFactory().newInstance(this, <display-name>, <type>, <prop-name>);
                //     }
                //     return <field>;
                // }
                Type propType = getType(property.getType());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/service/scopes/BuildScopeServices.java

        }
    
        private DefaultScriptPluginFactory defaultScriptPluginFactory() {
            return new DefaultScriptPluginFactory(
                this,
                get(ScriptCompilerFactory.class),
                getFactory(LoggingManagerInternal.class),
                get(AutoAppliedPluginHandler.class),
                get(PluginRequestApplicator.class),
                get(CompileOperationFactory.class));
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 35.8K bytes
    - Viewed (0)
Back to top