Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 205 for light (0.29 sec)

  1. platforms/core-runtime/client-services/src/main/java/org/gradle/internal/daemon/client/serialization/ClientSidePayloadClassLoaderRegistry.java

                    Set<ClassLoader> candidates = getClassLoaders(classLoaderDetails);
                    if (candidates != null) {
                        // TODO:ADAM - This isn't quite right
                        // MB: I think ^ refers to the first capable classloader loading the class. This could be different
                        // from the loader which originally loaded it, which could pose equality and lifecycle issues.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonParameters.java

                } catch (Exception e) {
                    // TODO: This should be pushed somewhere else so we consistently report this message in the right context.
                    throw new IllegalArgumentException(String.format("Value '%s' given for %s is an invalid Java version", requestedVersion, DaemonJvmPropertiesDefaults.TOOLCHAIN_VERSION_PROPERTY));
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilder.java

            // When there may be no more than one configuration, don't cache the resolution state for reuse. Currently, this only applies to detached configurations, however
            // it might be better to skip caching when it's likely there is only one configuration defined, for example, for script class paths, as the meta-data is unlikely to be reused.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    Generated POMs will contain only the information needed for consumption and they will use `<compile>` and `<runtime>` scopes correctly for that scenario.
    You might also see differences in the order of files in archives and of files on classpaths.
    Most differences will be minor, but it's worth identifying them and verifying that they are acceptable.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  5. platforms/core-execution/worker-main/src/main/java/org/gradle/process/internal/worker/child/SystemApplicationClassLoaderWorker.java

                    CompositeStoppable.stoppable(connection, basicWorkerServices).stop();
                    loggingManager.stop();
                } catch (Throwable t) {
                    // We're failing while shutting down, so log whatever might have happened.
                    unrecoverableErrorHandler.execute(t);
                }
            }
    
            return null;
        }
    
        private File getLastResortErrorLogFile(File workingDirectory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_version_alignment.adoc

    In that BOM, the following versions are defined and will be used:
    `jackson-core:2.9.5`,
    `jackson-databind:2.9.5` and
    `jackson-annotation:2.9.0`.
    The lower versions of `jackson-annotation` here might be the desired result as it is what the BOM recommends.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    #   set -- "\${ARGS[@]}" "\$@"
    #
    # but POSIX shell has neither arrays nor command substitution, so instead we
    # post-process each arg (as a line of input to sed) to backslash-escape any
    # character that might be a shell metacharacter, then use eval to reverse
    # that process (while maintaining the separation between arguments), and wrap
    # the whole thing up as a single "set" statement.
    #
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

                                button().id("all-scenarios").classAttr("btn-sm btn-primary").text("All scenarios").end();
                            }
                        end();
                        div().classAttr("col text-right mt-1");
                            i().classAttr("fa fa-filter").attr("data-toggle", "popover", "data-placement", "bottom").title("Filter by tag").style("cursor: pointer").text(" ").end();
                        end();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/integTest/groovy/org/gradle/cache/internal/DefaultFileLockManagerContentionIntegrationTest.groovy

            given:
            def requestReceived = false
            def additionalRequests = 0
            setupLockOwner() { requestReceived = true }
    
            when:
            // Debug logging might have logged exceptions from other Gradle systems, e.g. execution engine, so we disable stacktrace checks
            def build1 = executer.withStackTraceChecksDisabled().withArguments("-d").withTasks("lock").start()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiIntegrationTest.groovy

        TestFile projectDir
    
        def setup() {
            projectDir = temporaryFolder.testDirectory
            // When adding support for a new JDK version, the previous release might not work with it yet.
            Assume.assumeTrue(otherVersion.worksWith(Jvm.current()))
    
            settingsFile.touch()
        }
    
        void setupLoggingTest() {
            propertiesFile << "org.gradle.logging.level=quiet"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top