Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for getConnections (0.23 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    getComponentDescript(); public String getId(); public org.codehaus.plexus.lifecycle.LifecycleHandler getLifecycleHandler(); protected void incrementConnectionC(); protected void decrementConnectionC(); protected boolean connected(); public int getConnections(); public void setup(org.codehaus.plexus.MutablePlexusContain, org.codehaus.plexus.lifecycle.LifecycleHandler, org.codehaus.plexus.component.repository.ComponentDescriptor); public void initialize(); protected Object createComponentInsta(org....
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 205.7K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    getComponentDescript(); public String getId(); public org.codehaus.plexus.lifecycle.LifecycleHandler getLifecycleHandler(); protected void incrementConnectionC(); protected void decrementConnectionC(); protected boolean connected(); public int getConnections(); public void setup(org.codehaus.plexus.MutablePlexusContain, org.codehaus.plexus.lifecycle.LifecycleHandler, org.codehaus.plexus.component.repository.ComponentDescriptor); public void initialize(); protected Object createComponentInsta(org....
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 205.7K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    getComponentDescript(); public String getId(); public org.codehaus.plexus.lifecycle.LifecycleHandler getLifecycleHandler(); protected void incrementConnectionC(); protected void decrementConnectionC(); protected boolean connected(); public int getConnections(); public void setup(org.codehaus.plexus.MutablePlexusContain, org.codehaus.plexus.lifecycle.LifecycleHandler, org.codehaus.plexus.component.repository.ComponentDescriptor); public void initialize(); protected Object createComponentInsta(org....
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 233.3K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    getComponentDescript(); public String getId(); public org.codehaus.plexus.lifecycle.LifecycleHandler getLifecycleHandler(); protected void incrementConnectionC(); protected void decrementConnectionC(); protected boolean connected(); public int getConnections(); public void setup(org.codehaus.plexus.MutablePlexusContain, org.codehaus.plexus.lifecycle.LifecycleHandler, org.codehaus.plexus.component.repository.ComponentDescriptor); public void initialize(); protected Object createComponentInsta(org....
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 233.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/integTest/groovy/org/gradle/internal/remote/internal/hub/MessageHubIntegrationTest.groovy

            private final BlockingQueue<InterHubMessage> outgoingB = new LinkedBlockingQueue<>()
    
            RemoteConnection<InterHubMessage> getConnectionA() {
                return new RemoteConnection<InterHubMessage>() {
                    void dispatch(InterHubMessage message) {
                        outgoingA.put(message)
                    }
    
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/project/inheritance/t12scm/ProjectInheritanceTest.java

            System.out.println("Child SCM URL is: " + project1.getScm().getUrl());
            System.out.println();
            System.out.println("Parent SCM connection is: " + project0.getScm().getConnection());
            System.out.println("Child SCM connection is: " + project1.getScm().getConnection());
            System.out.println();
            System.out.println(
                    "Parent SCM developer connection is: " + project0.getScm().getDeveloperConnection());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/process/internal/worker/DefaultMultiRequestWorkerProcessBuilder.java

                    }
                    workerProcess.getConnection().addIncoming(ResponseProtocol.class, receiver);
                    workerProcess.getConnection().useJavaSerializationForParameters(workerImplementation.getClassLoader());
                    workerProcess.getConnection().useParameterSerializers(RequestSerializerRegistry.create(workerImplementation.getClassLoader(), argumentSerializers));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/WatchForDisconnection.java

        @Override
        public void execute(final DaemonCommandExecution execution) {
            // Watch for the client disconnecting before we call stop()
            execution.getConnection().onDisconnect(new Runnable() {
                @Override
                public void run() {
                    LOGGER.warn("thread {}: client disconnection detected, canceling the build", Thread.currentThread().getId());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/ForwardClientInput.java

        @Override
        public void execute(final DaemonCommandExecution execution) {
            forwarder.forwardInput(stdinHandler -> {
                execution.getConnection().onStdin(stdinHandler);
                try {
                    execution.proceed();
                } finally {
                    execution.getConnection().onStdin(null);
                }
                return null;
            });
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/HandleCancel.java

        private static final Logger LOGGER = Logging.getLogger(HandleCancel.class);
    
        @Override
        public void execute(final DaemonCommandExecution execution) {
            execution.getConnection().onCancel(new Runnable() {
                @Override
                public void run() {
                    LOGGER.info("HandleCancel processing {}", execution.getCommand());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top