Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

                            queue.abortAllAndFail(t);
                        }
                        // Notify other threads that the item is finished as this may unblock further work
                        // or this might be the last item in the queue
                        coordinationService.notifyStateChange();
                    });
                } finally {
                    stats.finishMarkFinished();
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  2. .github/CODEOWNERS

    # Build infrastructure
    .teamcity/                                  @gradle/bt-developer-productivity
    .github/                                    @gradle/bt-developer-productivity @gradle/bt-support # This might need to be more finegrained in the future
    /build-logic/                               @gradle/bt-developer-productivity
    /build-logic-commons/                       @gradle/bt-developer-productivity
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleBuildExperimentRunner.java

         * back-to-back, as there is typically some work being done between the builds,</li>
         * <li>give file system events a chance to arrive; otherwise we might detect them during
         * the build, and invalidating the VFS,
         * <li>let VFS cleanup (that happens between builds) finish.</li>
         * </ul>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

                .withContext("These workspace directories are not supposed to be modified once they are created. " +
                    "The modification might have been caused by an external process, or could be the result of disk corruption. " +
                    String.format("The inconsistent workspace will be moved to '%s', and will be recreated.", failedWorkspaceLocation.getAbsolutePath()) +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/TarFileTree.java

                } catch (Exception e) {
                    String message = "Unable to expand " + getDisplayName() + "\n"
                            + "  The tar might be corrupted or it is compressed in an unexpected way.\n"
                            + "  By default the tar tree tries to guess the compression based on the file extension.\n"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    For example, if your Github account is named `foo` and your plugin is named `bar`, a suitable plugin ID might be `com.github.foo.bar`.
    Similarly, if the plugin was developed at the `baz` organization, the plugin ID might be `org.baz.bar`.
    
    Plugin IDs should adhere to the following guidelines:
    
    - May contain any alphanumeric character, '.', and '-'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/feature_variants.adoc

    This allows the engine to determine the _component_ we're looking for, but such a component may provide different _variants_.
    A _variant_ is typically chosen based on the usage. For example, we might choose a different variant for compiling against a component (in which case we need the API of the component) or when executing code (in which case we need the runtime of the component).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    For instance, this plugin can be used to define a group of Integration Tests, which might run much longer than unit tests and have different environmental requirements.
    
    NOTE: The JVM Test Suite plugin is an <<feature_lifecycle.adoc#sec:incubating_state,incubating>> API and is subject to change in a future release.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/ShowToolchainsTaskTest.groovy

            task = project.tasks.create("test", TestShowToolchainsTask.class, javaInstallationRegistry, styledTextOutputFactory, toolchainConfiguration)
        }
    
        def "reports toolchains in right order"() {
            given:
            defineJdks(
                jdk("14", "+2", "14"),
                jdk("15-ea", "+2", "15"),
                jdk("9", "+2", "15"),
                jdk("1.8.0_202", "-b01", "1.8.0_202"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  10. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcher.java

    import static org.apache.commons.lang.StringUtils.substringAfterLast;
    
    /**
     * This class has two public APIs:
     *
     * <ul>
     * <li>Judge whether a test class might be included. For example, class 'org.gradle.Test' can't
     * be included by pattern 'org.apache.Test'
     * <li>Judge whether a test method is matched exactly.
     * </ul>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top