Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 631 for Sall (0.03 sec)

  1. testing/internal-architecture-testing/src/main/java/org/gradle/internal/architecture/PackageCycleTest.java

        public static final ArchRule there_are_no_package_cycles =
            SlicesRuleDefinition.slices().assignedFrom(GRADLE_SLICE_ASSIGNMENT)
                .should()
                .beFreeOfCycles()
                // Some projects exclude all classes, that is why we allow empty here
                .allowEmptyShould(true);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/main/java/org/gradle/language/java/internal/JavaLanguageServices.java

        private static class JavaProjectScopeServices implements ServiceRegistrationProvider {
            @Provides
            public ToolchainToolFactory createToolFactory(ExecActionFactory generator) {
                // TODO should we create all tools via this factory?
                return new ToolchainToolFactory() {
                    @Override
                    public <T> T create(Class<T> toolType, JavaToolchain toolchain) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/buildtree/BuildInclusionCoordinator.java

            } finally {
                registering.remove(build);
            }
        }
    
        private void makeSubstitutionsAvailableFor(BuildState build, Set<BuildState> seen) {
            // A build can see all the builds that it includes
            if (!seen.add(build)) {
                return;
            }
            boolean added = registering.add(build);
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TransformOperationMapper.java

    import java.util.Set;
    import java.util.concurrent.ConcurrentHashMap;
    
    import static org.gradle.tooling.internal.provider.runner.ClientForwardingBuildOperationListener.toOperationResult;
    
    /**
     * Transform listener that forwards all receiving events to the client via the provided {@code ProgressEventConsumer} instance.
     *
     * @since 5.1
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 16:16:16 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. .github/workflows/contributor-pr.yml

      # Enable debug for the `gradle-build-action` cache operations
      GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true
    
    permissions: {}
    
    jobs:
      build:
        name: "Compile All"
        permissions:
          contents: read
        runs-on: ubuntu-latest
        steps:
          - name: git clone
            uses: actions/checkout@v4
          - id: setup-matrix
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationNotificationsFixture.groovy

     * with the listener subscribing as the root project is loaded.
     *
     * This exercises the store-and-replay behaviour of the notification dispatcher
     * that allows a listener to observe all of the notifications from the very start of the build.
     *
     * This fixture reflectively exercises the details/results objects of the notifications,
     * ensuring that they are “usable”.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

    // Copyright 2008, Google Inc.
    // All rights reserved.
    //
    // Redistribution and use in source and binary forms, with or without
    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    // notice, this list of conditions and the following disclaimer.
    //     * Redistributions in binary form must reproduce the above
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTaskIntegrationTest.kt

         */
        protected
        fun setupPluginRequirements() {
            projectDir.resolve("version.txt").writeText("9999999.0") // All released versions should be lower than this
            projectDir.resolve("released-versions.json").writeText(
                """
                    {
                      "latestReleaseSnapshot": {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 14:00:46 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftApplicationProjectIntegrationTest.groovy

            def resultApp = xcodebuild
                    .withWorkspace(rootXcodeWorkspace)
                    .withScheme('App')
                    .fails()
    
            then:
            resultApp.assertHasCause("Could not resolve all dependencies for configuration ':app:nativeRuntimeDebug'.")
            resultApp.assertHasCause("Could not resolve project :greeter.")
    
    
            when:
            def resultLib = xcodebuild
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/describer/AmbiguousGraphVariantsFailureDescriber.java

                for (String configuration : ambiguousVariants.keySet()) {
                    formatter.node(configuration);
                }
                formatter.endChildren();
                formatter.node("All of them match the consumer attributes");
            }
            return ambiguousVariants;
        }
    
        private void formatUnselectable(
            ResolutionCandidateAssessor.AssessedCandidate assessedCandidate,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top