Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 253 for light (0.29 sec)

  1. testing/integ-test/src/integTest/groovy/org/gradle/integtests/DependencyResolutionFromTaskContextIntegrationTest.groovy

            """
            settingsFile << """
                include 'a', 'b'
            """
    
            expect:
            fails("a:foo", "b:foo", "--parallel")
    
            // We just need to assert that the build fails with the right error message here, it doesn't matter which task is the first to fail,
            // allowing either failure to pass the test should reduce flakiness on CI.
    
            def docLinkMessage = getDocLinkMessage()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonStarter.java

            builder.setBaseName("Gradle Worker Daemon");
            builder.setLogLevel(loggingManager.getLevel()); // NOTE: might make sense to respect per-compile-task log level
            builder.sharedPackages("org.gradle", "javax.inject");
            if (forkOptions.getClassLoaderStructure() instanceof FlatClassLoaderStructure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:39:33 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/credentials-handling/publishing-credentials/README.adoc

    This allows to build the project without worrying about the credentials.
    Try running `./gradlew jar` and it will succeed. Run `./gradlew publish` and it will tell you what is missing right away, without executing the build.
    Credentials can and should be kept externally from the project sources and be known only by those having to publish artifacts, perhaps injected by a CI server.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/functional/src/test/groovy/org/gradle/internal/EitherTest.groovy

            right.mapRight({ assert it == RIGHT; RIGHT2 }).right.get() == RIGHT2
            right.mapLeft({ assert false }).right.get() == RIGHT
        }
    
        def "fold() subsumes flatMap()"() {
            expect:
            left.fold({ assert it == LEFT; either(LEFT2) }, { assert false }).left.get() == LEFT2
    
            right.fold({ assert false }, { assert it == RIGHT; either(RIGHT2) }).right.get() == RIGHT2
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part2_gradle_tasks.adoc

    Documentation tasks
    -------------------
    javadoc - Generates Javadoc API documentation for the main source code.
    
    ...
    
    Other tasks
    -----------
    compileJava - Compiles main Java source.
    
    ...
    ----
    A task might be responsible for compilation, copying, and moving files around, creating JAR files, generating Javadoc, publishing artifacts to repositories, or many other discrete units of work.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 14:26:07 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/jvm/toolchain_plugins.adoc

    WARNING: For the download URL only secure protocols like `https` are accepted.
    This is required to make sure no one can tamper with the download in flight.
    
    The plugins provide the mapping logic via an implementation of link:{javadocPath}/org/gradle/jvm/toolchain/JavaToolchainResolver.html[JavaToolchainResolver]:
    
    .JavaToolchainResolverImplementation.java
    [source,java]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/CaseInsensitiveVfsRelativePathTest.groovy

            where:
            left     | right
            '\u1e9e' | 'ß'
            '\u03a3' | '\u03c2'
            '\u03a3' | '\u03c3'
        }
    
        def "can compare lower and upper case correctly (#left - #right = #result)"() {
            def char1 = left as char
            def char2 = right as char
            def caseInsensitiveResult = left.toUpperCase() == right.toUpperCase() ? 0 : result
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/build_file_basics.adoc

    In this example, the main class (i.e., the point where the program's execution begins) is `com.example.Main`.
    
    Consult the <<writing_build_scripts.adoc#writing_build_scripts,Writing Build Scripts>> page to learn more.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/resolver/DefaultVariantArtifactResolver.java

                // Most of the time the artifactType registry has the same effect on the variant's attributes, but this isn't guaranteed.
                // It might be better to tighten this up by either requiring a single artifactType registry for the entire build or eliminating this feature
                // entirely.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 04:22:29 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/PairTest.groovy

        t.nestLeft(2).right == "a"
        t.nestRight(2).left == 1
        t.nestRight(2).right == Pair.of(2, "a")
    
        t.pushLeft(2).left == 2
        t.pushLeft(2).right == t
        t.pushRight(2).left == t
        t.pushRight(2).right == 2
    
        t.mapLeft { it + 1 }.left == 2
        t.mapLeft { it + 1 }.right == "a"
        t.mapRight { it * 2 }.left == 1
        t.mapRight { it * 2 }.right == "aa"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top