Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 736 for sense (0.06 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionSelector.java

        /**
         * Indicates if a version selector can be used to short-circuit selection, whenever a different
         * version has been selected previously. Typically, an exact version selector can short-circuit,
         * in the sense that it will always return a correct answer whenever exposed to a version. But a
         * "latest" selector will give a different answer whether is called first, or starting with a
         * pre-selected version.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

         * This method does not access the file system.
         * It is agnostic to whether a given file object represents a regular file, directory or does not exist.
         * That is, the term “file” is used in the java.io.File sense, not the regular file sense.
         *
         * @param files the site of files to find the encompassing roots of
         * @return the encompassing roots
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/ArtifactSetToFileCollectionFactory.java

            }
    
            @Override
            public void visitDependencies(TaskDependencyResolveContext context) {
                throw new UnsupportedOperationException();
            }
        }
    
        // "partial" in the sense that some artifacts are only available as a File, and have no metadata
        private static class PartialSelectedArtifactSet implements SelectedArtifactSet {
            private final List<?> elements;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingUtils.java

         * the build script can sneak in such {@code Entry} and change the result of e.g. {@code contains}
         * call. The external world cannot influence the result, so it makes no sense to record such access
         * as an input to the configuration cache.
         * <p>
         * Note that the returned object doesn't have to be the same object that was passed to the method.
         *
         * @param o the object to cast
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/plugins/jvm/internal/JvmEcosystemAttributesDetails.java

         * lazily, for example calling {@code JvmLanguageUtilities#useDefaultTargetPlatformInference(Configuration, TaskProvider)}.
         * For consumers, it makes sense to specify a specific version of JVM they target.
         *
         * @param version the Java version
         */
        JvmEcosystemAttributesDetails withTargetJvmVersion(int version);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m9/M9JavaConfigurabilityCrossVersionSpec.groovy

    import org.junit.Assume
    
    @TargetGradleVersion(">=3.0")
    class M9JavaConfigurabilityCrossVersionSpec extends ToolingApiSpecification {
    
        def setup() {
            //this test does not make any sense in embedded mode
            //as we don't own the process
            toolingApi.requireDaemons()
        }
    
        def "uses defaults when a variant of empty jvm args requested"() {
            when:
            def env = withConnection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/vendor/golang.org/x/text/cases/info.go

    // 2) Use the breaker here.
    // 3) Compare table size and performance of using the more generic breaker.
    //
    // Note that we can extend the current algorithm to be much more accurate. This
    // only makes sense, though, if the performance and/or space penalty of using
    // the generic breaker is big. Extra data will only be needed for non-cased
    // runes, which means there are sufficient bits left in the caseType.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/TimeFormatting.java

        public static String formatDurationVeryTerse(long duration) {
            if (duration == 0) {
                return "0s";
            }
    
            StringBuilder result = new StringBuilder();
    
            // Whereas it doesn't make sense to pass negative values to this method,
            // the duration passed on call sited is often a result of some math, what is not guarantees positive-values-only.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:20:17 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/m8/JavaConfigurabilityCrossVersionSpec.groovy

    import org.gradle.util.GradleVersion
    import spock.lang.Issue
    import spock.lang.Timeout
    
    class JavaConfigurabilityCrossVersionSpec extends ToolingApiSpecification {
    
        def setup() {
            //this test does not make any sense in embedded mode
            //as we don't own the process
            toolingApi.requireDaemons()
        }
    
        def "configures the java settings"() {
            when:
            BuildEnvironment env = withConnection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top