Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 267 for light (0.04 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/events/FlushOutputEvent.java

     * limitations under the License.
     */
    
    package org.gradle.internal.logging.events;
    
    import org.gradle.api.logging.LogLevel;
    
    import javax.annotation.Nullable;
    
    /**
     * Notifies output consumers that might be queueing messages to immediately flush their queues.
     */
    public class FlushOutputEvent extends OutputEvent implements InteractiveEvent {
        @Nullable
        @Override
        public LogLevel getLogLevel() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 00:09:24 UTC 2024
    - 1015 bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/internal/cache/CacheDirUtil.java

                try {
                    Files.deleteIfExists(cacheDirTag);
                } catch (IOException e1) {
                    // logging at warn here so it's more visible to the end-user, who might see the file and assume
                    // that it is written properly.
                    LOGGER.warn("Failed to delete partial cache directory tag file: " + cacheDirTag, e1);
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 25 20:35:25 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. subprojects/core/src/testFixtures/java/org/gradle/internal/classpath/TestInstrumentedClassLoader.java

            } catch (IOException e) {
                throw new RuntimeException(e);
            }
            originalReader.accept(pathAndVisitor.right(), ClassReader.EXPAND_FRAMES);
    
            return writer.toByteArray();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:14:01 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/PluginResolutionResult.java

         *
         * @param sourceDescription a description of the source of plugins, where the plugin requested could not be found
         * @param notFoundMessage message on why the plugin couldn't be found (e.g. it might be available by a different version)
         */
        public static PluginResolutionResult notFound(String sourceDescription, String notFoundMessage) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomTest.kt

                """
                myFun {
                    a = "x"
                    a = b
                    b = f(a = "x")
                    b = f(a = "x") { test() }
                    call(x = { }) // TODO: right now, it is reported as an unsupported language feature FunctionDeclaration, report it in a more precise way?
                    multiLambda({ }, { })
                    1
                    a.b()
                    a.x = 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/caching/ImplicitInputsProvidingService.java

     *
     * Both have to be serializable, and it's encouraged to use the minimal footprint which allows
     * determining up-to-date status. For example, a SHA1 of a resource might be enough, rather than storing
     * the whole resource itself.
     *
     * @param <IN> a service specific type, representing a query of the service, which can be replayed later
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CoupledProjectsListener.kt

    @EventScope(Scope.Build::class)
    interface CoupledProjectsListener {
        /**
         * Notified when the build logic for a [referrer] project accesses the mutable state of some other [target] project.
         *
         * The [referrer] and [target] might represent the same project, and the listener implementation
         * should handle this specifically, probably ignoring such calls, as a project is naturally coupled with itself.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/tooling/provider/model/internal/ToolingModelProjectDependencyListener.java

        /**
         * Notified when model builders for a {@code consumer} project requests an intermediate model of some other {@code target} project.
         * <p>
         * The {@code consumer} and {@code target} might represent the same project, and the listener implementation
         * should handle this specifically, probably ignoring such calls.
         */
        void onToolingModelDependency(ProjectState consumer, ProjectState target);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part4_gradle_plugins.adoc

    ----
    
    A new set of publishing tasks are now available called `publish`, and `publishToMavenLocal`.
    
    Similarly, the new tasks from the Maven Publish plugin are now available in IntelliJ in the Gradle right-hand pane.
    
    image::tutorial/intellij-idea-plugin.png[]
    
    == Step 3. Configuring the Plugin
    Add the publishing information to your `build.gradle(.kts)` file:
    
    [.multi-language-sample]
    =====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 13 11:29:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt

                                // The artifact rule report/css/*.css => performanceResultsDir is there to clean up the target directory.
                                // If we don't clean that up there might be leftover json files from other report builds running on the same machine.
                                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:42 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top