Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 215 for Sall (0.03 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

                    targetConfiguration.removeIncomingEdge(this);
                }
                targetNodes.clear();
            }
            targetNodeSelectionFailure = null;
        }
    
        /**
         * Call this method to attach a failure late in the process. This is typically
         * done when a failure is caused by graph validation. In that case we want to
         * perform as much resolution as possible, still have a valid graph, but in the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/services/NativeServices.java

            // and the results in the PR https://github.com/gradle/gradle/pull/12966
            // we're using "native platform" for all OSes if available.
            // If it isn't available, we fall back to using Java NIO and, if that fails, to using the old `File` APIs.
    
            if (useNativeIntegrations) {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r48/PhasedBuildActionCrossVersionSpec.groovy

            then:
            UnsupportedVersionException e = thrown()
            e.message == "The version of Gradle you are using (${version}) does not support the PhasedBuildActionExecuter API. Support for this is available in Gradle 4.8 and all later versions."
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

                    doLast {
                        println 'do something'
                    }
                }
            """
    
            when:
            executeTaskViaTAPI(":other-build:tasks", "--all")
    
            then:
            assertHasBuildSuccessfulLogging()
            outputContains("doSomething - Prints the message 'do something'")
        }
    
        def "can run help from included build"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

        }
    
        public File getDownloadLocation() {
            return jdkDirectory;
        }
    
        private static String getNameWithoutExtension(File file) {
            //remove all extensions, for example for xxx.tar.gz files only xxx should be left
            String output = file.getName();
            String input;
            do {
                input = output;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  6. platforms/core-runtime/BYTECODE-INTERCEPTION-README.md

    4. **Annotations to define interception type**, like if this is an instance or static method, if we should intercept Groovy or just Java etc.
    5. **Return type **of original call
    6. **The receiver** of original call
    7. **Parameters** of original call
    8. **Logic** with call interception logic or logic that translates the new type to the old type
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 09:22:58 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

    @NonExtensible
    @ServiceScope(Scope.Build.class)
    public interface ProviderFactory {
    
        /**
         * Creates a {@link Provider} whose value is calculated using the given {@link Callable}.
         *
         * <p>The provider is live and will call the {@link Callable} each time its value is queried. The {@link Callable} may return {@code null}, in which case the provider is considered to have no value.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/Codecs.kt

            bind(PropertyCodec(propertyFactory, nestedCodec))
            bind(ProviderCodec(nestedCodec))
        }
    
        /**
         * Returns a Codec for Provider implementations suitable for all Provider implementations.
         */
        private
        fun nestedProviderCodec(
            valueSourceProviderFactory: ValueSourceProviderFactory,
            buildStateRegistry: BuildStateRegistry,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/LocalFileDependencyBackedArtifactSetCodec.kt

                // Do not write this if it will not be used
                // TODO - simplify extracting the mappings
                // TODO - deduplicate this data, as the mapping is project scoped and almost always the same across all projects of a given type
                val artifactType = value.requestAttributes.getAttribute(ARTIFACT_TYPE_ATTRIBUTE)
                writeBoolean(artifactType != null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/deps/ClassSetAnalysisData.java

        }
    
        /**
         * Takes the reverse dependency view of this set and reverses it, so it turns into a forward dependency view.
         * Excludes types that are dependencies to all others, these need to be handled separately by the caller.
         */
        private Multimap<String, String> getForwardDependencyView() {
            Multimap<String, String> dependencies = ArrayListMultimap.create(dependents.size(), 10);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 15:22:57 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top