Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. architecture/README.md

    The Gradle team uses ADRs to record architectural decisions that the team has made.
    
    See [Architecture decisions records](standards) for the list of ADRs.
    Be aware these are very technical descriptions of the decisions, and you might find the documentation below more useful as an introduction to the internals of Gradle.
    
    ## Platform architecture
    
    Gradle is arranged into several coarse-grained components called "platforms".
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. 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)
  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-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)
  7. 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)
  8. 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)
  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/native/language-native/src/testFixtures/groovy/org/gradle/language/AbstractNativeLanguageComponentIntegrationTest.groovy

    import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform
    
    abstract class AbstractNativeLanguageComponentIntegrationTest extends AbstractInstalledToolChainIntegrationSpec {
    
        def "binaries have the right platform type"() {
            given:
            makeSingleProject()
            buildFile << """
                task verifyBinariesPlatformType {
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top