Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for getLogging (0.22 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/DefaultKotlinScript.kt

    ) : KotlinScript, GradleScript {
    
        internal
        interface Host {
            fun getLogger(): Logger
            fun getLogging(): LoggingManager
            fun getFileOperations(): FileOperations
            fun getProcessOperations(): ProcessOperations
        }
    
        override val logging: LoggingManager by unsafeLazy(host::getLogging)
    
        override val logger: Logger by unsafeLazy(host::getLogger)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 07 22:41:55 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectScript.java

        @Override
        public StandardOutputCapture getStandardOutputCapture() {
            return getScriptTarget().getStandardOutputCapture();
        }
    
        @Override
        public LoggingManager getLogging() {
            return getScriptTarget().getLogging();
        }
    
        @Override
        public Logger getLogger() {
            return getScriptTarget().getLogger();
        }
    
        @Override
        public String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/DefaultTask.java

        }
    
        @Override
        public void setOnlyIf(Closure onlyIfClosure) {
            super.setOnlyIf(onlyIfClosure);
        }
    
        @Override
        public org.gradle.api.logging.LoggingManager getLogging() {
            return super.getLogging();
        }
    
        @Override
        public TaskInputsInternal getInputs() {
            return super.getInputs();
        }
    
        @Override
        public TaskOutputsInternal getOutputs() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/CompiledKotlinSettingsScript.kt

        private
        class SettingsScriptHost(val host: KotlinScriptHost<Settings>) : Host {
            override fun getLogger(): Logger = Logging.getLogger(Settings::class.java)
            override fun getLogging(): LoggingManager = host.target.serviceOf()
            override fun getFileOperations(): FileOperations = host.fileOperations
            override fun getProcessOperations(): ProcessOperations = host.processOperations
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. testing/integ-test/src/crossVersionTest/groovy/org/gradle/integtests/AbstractTaskSubclassingBinaryCompatibilityCrossVersionSpec.groovy

                        // Note: not all of these specialise at time of writing, but may do in the future
                        getTaskDependencies();
                        getState();
                        getLogging();
                        getLogging().captureStandardOutput(LogLevel.INFO);
                        getStandardOutputCapture();
                        getInputs();
                        getOutputs();
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/CompiledKotlinBuildScript.kt

            get() = host.scriptHandler
    
        private
        class InitScriptHost(val host: KotlinScriptHost<Gradle>) : Host {
            override fun getLogger(): Logger = Logging.getLogger(Gradle::class.java)
            override fun getLogging(): LoggingManager = host.target.serviceOf()
            override fun getFileOperations(): FileOperations = host.fileOperations
            override fun getProcessOperations(): ProcessOperations = host.processOperations
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/ExternalScriptExecutionIntegrationTest.groovy

        }
    
        @Test
        void canExecuteExternalScriptAgainstAnArbitraryObject() {
            createBuildSrc()
    
            testFile('external.gradle') << '''
    println 'quiet message'
    getLogging().captureStandardOutput(LogLevel.ERROR)
    println 'error message'
    new BuildSrcClass()
    assert 'doStuff' == name
    assert buildscript.classLoader == getClass().classLoader.parent
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/groovy/scripts/DefaultScript.java

        }
    
        @Override
        public <T> Provider<T> provider(Callable<T> value) {
            return providerFactory.provider(value);
        }
    
        @Override
        public LoggingManager getLogging() {
            return loggingManager;
        }
    
        @Override
        public Logger getLogger() {
            return LOGGER;
        }
    
        @Override
        public String toString() {
            return "script";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/delegates/ProjectDelegate.kt

            delegate.javaexec(action)
    
        @AllowUsingApiForExternalUse
        override fun getChildProjects(): MutableMap<String, Project> =
            delegate.childProjects
    
        override fun getLogging(): LoggingManager =
            delegate.logging
    
        override fun getTasks(): TaskContainer =
            delegate.tasks
    
        override fun getName(): String =
            delegate.name
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:16:16 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  10. platforms/jvm/language-groovy/src/main/java/org/gradle/api/tasks/javadoc/Groovydoc.java

        private final Property<Boolean> includeMainForScripts = getProject().getObjects().property(Boolean.class);
    
        public Groovydoc() {
            getLogging().captureStandardOutput(LogLevel.INFO);
        }
    
        @TaskAction
        protected void generate() {
            checkGroovyClasspathNonEmpty(getGroovyClasspath().getFiles());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 14.1K bytes
    - Viewed (0)
Back to top