Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 260 for light (1.51 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiStreamingBuildActionIntegrationTest.groovy

            fixture.assertStateStored {
                projectConfigured(":")
                modelsCreated(":", 3)
            }
    
            and:
            (model.left as GradleProject).name == "hello-world"
            (model.right as EclipseProject).gradleProject.name == "hello-world"
    
            and:
            def streamedModels = listener1.models as List<CustomModel>
            streamedModels.size() == 2
            streamedModels[0].value == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_strategy_tuning.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[resolution-strategy-safety-nets]]
    = Preventing accidental dependency upgrades
    
    In some situations, you might want to be in total control of the dependency graph.
    In particular, you may want to make sure that:
    
    - the versions declared in a build script actually correspond to the ones being resolved
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

      bool IsAbsolutePath() const;
    
     private:
      // Replaces multiple consecutive separators with a single separator.
      // For example, "bar///foo" becomes "bar/foo". Does not eliminate other
      // redundancies that might be in a pathname involving "." or "..".
      //
      // A pathname with multiple consecutive separators may occur either through
      // user error or as a result of some scripts or APIs that generate a pathname
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/css/print.css

        font-size: 240%;
        text-align: right;
    }
    
    .chapter > .titlepage h2 {
        font-size: 400%;
        text-align: right;
    }
    
    .chapter > .titlepage {
        margin-bottom: 4em;
    }
    
    .appendix > .titlepage h1 {
        font-size: 240%;
        text-align: right;
    }
    
    .appendix > .titlepage h2 {
        font-size: 400%;
        text-align: right;
    }
    
    .appendix > .titlepage {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ModuleSelectors.java

            @Override
            public int compare(ResolvableSelectorState left, ResolvableSelectorState right) {
                if (right.isProject() == left.isProject()) {
                    if (right.isFromLock() == left.isFromLock()) {
                        if (hasLatestSelector(right) == hasLatestSelector(left)) {
                            if (isDynamicSelector(right) == isDynamicSelector(left)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleSourceDetector.java

    public class ModelRuleSourceDetector {
    
        private static final Comparator<Class<?>> COMPARE_BY_CLASS_NAME = new Comparator<Class<?>>() {
            @Override
            public int compare(Class<?> left, Class<?> right) {
                return left.getName().compareTo(right.getName());
            }
        };
    
        final LoadingCache<Class<?>, Collection<Reference<Class<? extends RuleSource>>>> cache = CacheBuilder.newBuilder()
                .weakKeys()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/type/ModelTypes.java

            return new Ordering<ModelType<? extends T>>() {
                @Override
                public int compare(ModelType<? extends T> left, ModelType<? extends T> right) {
                    return left.getDisplayName().compareTo(right.getDisplayName());
                }
            };
        }
    
        /**
         * Returns the sorted, unique display names of the given types.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/pattern/FixedStepPathMatcher.java

                // Empty path, might match when more elements added
                return true;
            }
            if (!step.matches(segments[startIndex])) {
                // Does not match element, will never match when more elements added
                return false;
            }
            if (startIndex +1 == segments.length) {
                // End of path, might match when more elements added
                return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/expiry/DaemonExpirationStatus.java

        GRACEFUL_EXPIRE,
        IMMEDIATE_EXPIRE;
    
        public static DaemonExpirationStatus highestPriorityOf(DaemonExpirationStatus left, DaemonExpirationStatus right) {
            if (left.ordinal() > right.ordinal()) {
                return left;
            } else {
                return right;
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/SystemClassLoaderTest.groovy

     *
     * When running without the daemon, success is dependant on the start scripts doing the right thing.
     * When running with the daemon, success is dependent on DaemonConnector forking the daemon process with the right classpath.
     *
     * This test is not meaningful when running the embedded integration test mode, so we ignore it in that case.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top