Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 205 for light (0.9 sec)

  1. 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)
  2. 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)
  3. 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)
  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/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

            //this way we avoid potential runaway daemons that steal resources on linux and break builds on windows.
            //We might leave that in if we decide it's a good idea for an extra safety net.
            int maxTimeout = 2 * 60 * 1000;
            if (daemonParameters.getIdleTimeout() > maxTimeout) {
                daemonParameters.setIdleTimeout(maxTimeout);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppPlatformToolProvider.java

            // TODO:ADAM - restrict this to the specific path for the target tool
            invocationContext.addPath(visualCpp.getPath());
            invocationContext.addPath(sdk.getPath());
            // Clear environment variables that might effect cl.exe & link.exe
            clearEnvironmentVars(invocationContext, "INCLUDE", "CL", "LIBPATH", "LINK", "LIB");
    
            invocationContext.setArgAction(commandLineToolConfiguration.getArgAction());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/ResolutionFailureHandler.java

            String configurationName,
            ComponentIdentifier componentId
        ) {
            // We hard-code the exception here since we do not currently support dynamically describing this type of failure.
            // It might make sense to do this for other similar failures that do not have dynamic failure handling.
            ConfigurationNotConsumableFailure failure = new ConfigurationNotConsumableFailure(configurationName, componentId.getDisplayName());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/artifacts/dsl/DependencyCollectorDslIntegrationTest.groovy

            result.assertHasErrorOutput("""None of the following functions can be called with the arguments supplied:${' '}
    public operator fun DependencyCollector.invoke""") // Don't care what the other options are, just that it's the right name
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 16:23:38 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. 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)
Back to top