Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 119 for requestKind (0.15 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r86/ModelStreamingBuildAction.java

            EclipseProject eclipseProject = controller.getModel(EclipseProject.class);
            GradleProject gradleProject = controller.getModel(GradleProject.class);
    
            // Intentionally sending models in an order different from requesting models
            controller.send(gradleProject);
            controller.send(eclipseProject);
    
            return new CustomModel(42);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:55:56 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/ModelStreamingBuildAction.java

            EclipseProject eclipseProject = controller.getModel(EclipseProject.class);
            GradleProject gradleProject = controller.getModel(GradleProject.class);
    
            // Intentionally sending models in an order different from requesting models
            controller.send(gradleProject);
            controller.send(eclipseProject);
    
            return new CustomModel(42);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/RequestStopIfSingleUsedDaemon.java

        @Override
        public void execute(DaemonCommandExecution execution) {
            if (execution.isSingleUseDaemon()) {
                LOGGER.debug("Requesting daemon stop after processing {}", execution.getCommand());
                // Does not take effect until after execution has completed
                execution.getDaemonStateControl().requestStop("");
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Command.java

     * limitations under the License.
     */
    package org.gradle.launcher.daemon.protocol;
    
    import java.io.Serializable;
    import java.util.UUID;
    
    /**
     * Represents the initial message sent to the daemon, requesting that the daemon do some work.
     */
    public class Command extends Message implements Serializable {
        private final UUID identifier;
        private final byte[] token;
    
        public Command(UUID identifier, byte[] token) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/component/LibraryComponentSelector.java

         */
        String getProjectPath();
    
        /**
         * Return the library name of the selected library.
         * If the library name is null then it is expected to find a single library defined in same project
         * as the requesting component or dependency resolution will fail.
         * If not <code>null</code> then the name will never be empty.
         *
         * @return the library name
         */
        @Nullable
        String getLibraryName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:54 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_issue47650.txt

    # commit.
    cp go.mod go.mod.orig
    go get -x vcs-test.golang.org/git/issue47650.git/cmd/issue47650@21535ef346c3
    stderr '^go: added vcs-test.golang.org/git/issue47650.git v0.1.1-0.20210811175200-21535ef346c3$'
    
    # Explicitly requesting that same version should succeed, fetching additional
    # history for the requested commit as needed in order to validate the
    # pseudo-version base.
    go clean -modcache
    cp go.mod.orig go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DispatchingFailureIntegrationSpec.groovy

            expect:
            //This kind of failure more likely reproduces the problem
            file("settings.gradle") << "// empty"
            def projectdir = file("project dir").createDir()
    
            //requesting x failing builds creates enough stress to expose issues with unsynchronized dispatch
            50.times {
                executer.usingProjectDirectory(projectdir)
                        .withTasks("tasks")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_upgrade_patch.txt

    cmp go.mod.dropped go.mod
    
    # Requesting the direct dependency with -u=patch but without an explicit version
    # should patch-update it and its dependencies.
    cp go.mod.orig go.mod
    go get -u=patch patch.example.com/direct
    go list -m all
    stdout '^patch.example.com/direct v1.0.1'
    stdout '^patch.example.com/indirect v1.0.1'
    stdout '^patch.example.com/depofdirectpatch v1.0.0'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/Connection.java

     * <ul>
     * <li>should allow separate threads for dispatching and receiving, i.e. single thread that dispatches
     * and a different single thread that receives should be perfectly safe</li>
     * <li>should allow stopping or requesting stopping from a different thread than receiving/dispatching</li>
     * <li>don't guarantee allowing multiple threads dispatching</li>
     * </ul>
     */
    public interface Connection<T> extends Dispatch<T>, Receive<T>, Stoppable {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/AbstractFailure.java

        public boolean isFailure() {
            return true;
        }
    
        @Override
        public RuntimeException getFailure() {
            return failure;
        }
    
        @Override
        public void writeTo(int requestId, HttpExchange exchange) {
            throw new IllegalStateException();
        }
    
        protected static String withLeadingSlash(String path) {
            if (path.startsWith("/")) {
                return path;
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top