Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 486 for light (0.07 sec)

  1. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

        private static final Comparator<File> FILE_SEGMENT_COMPARATOR = new Comparator<File>() {
            @Override
            public int compare(File left, File right) {
                String leftPath = left.getPath();
                String rightPath = right.getPath();
    
                int len1 = leftPath.length();
                int len2 = rightPath.length();
                int lim = Math.min(len1, len2);
    
                int k = 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

                return de;
            }
            Expression right = transform(de.getRightExpression());
            if (right == de.getRightExpression()) {
                fixDeclaringClass(de);
                return de;
            }
            DeclarationExpression newDeclExpr = new DeclarationExpression(left, de.getOperation(), right);
            newDeclExpr.setDeclaringClass(de.getDeclaringClass());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  3. platforms/software/resources-http/src/test/resources/org/gradle/internal/resource/transport/http/nexus_dirlisting.html

                              </td>
                <td>
                  Thu Sep 29 21:19:50 CEST 2011
                </td>
                <td align="right">
                                  817
                              </td>
                <td>
                  &nbsp;
                </td>
              </tr>
                      <tr>
                <td>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/settings_file_basics.adoc

    [source,kotlin]
    ----
    include("app")
    include("business-logic")
    include("data-model")
    ----
    
    Consult the <<writing_settings_files.adoc#writing_settings_files,Writing Settings File>> page to learn more.
    
    [.text-right]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. 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)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGLoggingOutputCaptureIntegrationTest.groovy

                )
            }
    
            outputContains expectedOutput('The Foo Test')
    
            /**
             * This test documents the current behavior. It's not right, we're missing a lot of output in the report.
             */
    
            def xmlReport = new JUnitXmlTestExecutionResult(testDirectory)
            def classResult = xmlReport.testClass("FooTest")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top