Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 206 for light (0.09 sec)

  1. CONTRIBUTING.md

    - In the "Open Project" dialogue, choose "Delete Existing Project and Import"
    - Revert the Git changes to files in the `.idea` folder
    
    NOTE: Due to the project size, the very first import can take a while and IntelliJ might become unresponsive for several seconds during this period.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    A project typically corresponds to a software component that needs to be built, like a library or an application.
    It might represent a library JAR, a web application, or a distribution ZIP assembled from the JARs produced by other projects.
    
    On the other hand, it might represent a thing to be done, such as deploying your application to staging or production environments.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

         * things that use class C would include subclasses of C, fields declared as C, methods that return C,
         * and methods and constructors with parameters of type C.
         * For example, let's look at what might appear on the "Use" page for String.
         * The getName() method in the java.awt.Font class returns type String. Therefore, getName() uses String,
         * and you will find that method on the "Use" page for String.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/transfer/DefaultCacheAwareExternalResourceAccessor.java

                    return copyToCache(location, fileStore, delegate.withProgressLogging().resource(location));
                }
    
                // We might be able to use a cached/locally available version
                if (cached != null && !externalResourceCachePolicy.mustRefreshExternalResource(getAgeMillis(timeProvider, cached))) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    ----
    =====
    ====
    
    If you have just gotten the latest version of the source from your version control system, which included changes in other projects that `:api` depends on, you might want to build all the projects you depend on AND test them too.
    
    The `buildNeeded` task builds AND tests all the projects from the project dependencies of the `testRuntime` configuration:
    
    ====
    [.multi-language-sample]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/api/groovy_build_script_primer.adoc

    === Delegation
    
    The <<#groovy:properties,section on properties>> lists where unqualified properties might be found. One common place is on the `Project` object. But there is an alternative source for those unqualified properties and methods inside a block: the block's _delegate object_.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/DefaultTestReportTest.groovy

            passedInIgnoredTestDetails.assertPassed()
    
            def ignoredTestDetails = someIgnoredClassFile.testDetails('ignored')
            ignoredTestDetails.assertDuration("-") //is this right? it seems an ignored test may still have a duration?
            ignoredTestDetails.assertIgnored()
    
            def failingClassFile = results(reportDir.file('classes/org.gradle.failing.SomeIgnoredSomePassedSomeFailed.html'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    Gradle doesn't consider private getters as inputs for up-to-date checking, which means that your annotations effectively are ignored.
    It is important to fix because you might think that you have declared an input when it's not the case.
    
    To fix this, either make the getter public, or annotate an existing getter instead, or create a new annotated getter.
    
    [[ignored_property_must_not_be_annotated]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_customization.adoc

    ====
    
    In other cases, you might want to modify a variant that was added by one of the Java plugins already.
    For example, if you activate publishing of Javadoc and sources, these become additional variants of the `java` component.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftIncrementalCompileIntegrationTest.groovy

            and:
            // rebuild for Swift3
            succeeds("compileDebugSwift")
            outputs.recompiledClasses('main', 'sum', 'greeter', 'multiply')
        }
    
        // This isn't quite right, we really want to assert something like "has both swiftc3 and swiftc4"
        @RequiresInstalledToolChain(ToolChainRequirement.SWIFTC_4)
        def 'changing Swift tool chain rebuilds everything'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top