Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 267 for light (0.07 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/SingleFileTreeElementMatcher.java

            // A better solution for output files would be to record the type of the output file and then using this type here instead of looking at the disk.
            // Though that is more involved and as soon as the file has been produced, the right file type will be detected here as well.
            boolean elementIsFile = !element.isDirectory();
            RelativePath relativePath = RelativePath.parse(elementIsFile, relativePathString);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/swift-application-configurations.dot

        swiftCompileVariant[label=<swiftCompile<i>Variant</i> (R)>]
        nativeLinkVariant[label=<nativeLink<i>Variant</i> (R)>]
        nativeRuntimeVariant[label=<nativeRuntime<i>Variant</i> (R)>]
      }
    
      subgraph right {
        node[style=filled, fillcolor="#ea9999"]
        variantRuntimeElements [weight=1000]
    
        variantRuntimeElements[label=<<i>variant</i>RuntimeElements (C)>]
      }
    
      // Ensure the order is preserved
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/plugin/software/internal/SoftwareTypeRegistry.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.util.Set;
    
    /**
     * Allows registration of software types implemented by plugins.
     */
    @ServiceScope(Scope.Build.class) // TODO: Might be too specific a scope, but needed something there
    public interface SoftwareTypeRegistry {
        /**
         * Registers a plugin as providing a software type.  Cannot be called again once the list of software types has been
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/PrecompiledScriptPlugin.kt

            // are the shebang line and file annotations.
            //
            // If neither of them is there, then we know that the package statement is
            // right at the beginning of the script, if present at all, so we can do a
            // very simple and cheap search for it.
            //
            // Otherwise, we must do a bit more involved searching.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/provider/ValueSource.java

     * <a href="https://docs.gradle.org/current/userguide/configuration_cache.html" target="_top">the configuration cache</a>
     * as values obtained from those sources change.
     * For example, a build might run a different set of tasks depending on whether the {@code CI}
     * environment variable is set or not.
     * </p>
     *
     * <p>
     * To integrate a new type of value source, create an abstract subclass of this interface
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 13:02:13 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SimpleJavaContinuousIntegrationTest.groovy

            then:
            succeeds("build")
            executedAndNotSkipped ":compileJava", ":build"
    
            when:
            if (TestPrecondition.satisfied(UnitTestPreconditions.Windows)) {
                //the main src dir might be locked, only delete children
                file("src/main/java").listFiles().each {
                    assert !it.deleteDir().exists()
                }
            } else {
                assert !file("src/main/java").deleteDir().exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr2_build_lifecycle.adoc

    This is called _task configuration avoidance_ and prevents unnecessary work.
    
    Task configuration avoidance is when Gradle avoids configuring `task2` when `task1` was called and `task1` does NOT depend. on `task2`.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 05:44:04 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/MSBuildExecutor.java

        }
    
        private static String fileContents(File file) {
            try {
                // TODO this should not be using the default charset because it's not an input and might introduce flakiness
                return FileUtils.readFileToString(file, Charset.defaultCharset());
            } catch (IOException e) {
                throw UncheckedException.throwAsUncheckedException(e);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecIntegrationTest.groovy

                "This behavior has been deprecated. This will fail with an error in Gradle 9.0. " +
                "Resolving relative file paths might yield unexpected results, there is no single clear location it would make sense to resolve against. " +
                "Configure an absolute path to a Java executable instead. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/gradle_directories.adoc

    <9> Each subproject has its own Gradle build script.
    
    Consult the <<directory_layout.adoc#dir:project_root,Gradle Directories reference>> to learn more.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top