Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,340 for connector (0.37 sec)

  1. platforms/jvm/ear/src/integTest/resources/org/gradle/plugins/ear/application_1_3.dtd

    deployment descriptor from the default location and file name required by the respective component specification. Used in: module --> <!ELEMENT alt-dd (#PCDATA)> <!-- The connector element specifies the URI of a resource adapter archive file, relative to the top level of the application package. Used in: module --> <!ELEMENT connector (#PCDATA)> <!-- The context-root element specifies the context root of a web application. Used in: web --> <!ELEMENT context-root (#PCDATA)> <!-- The description element...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiUnsupportedVersionIntegrationTest.groovy

        def setup() {
            toolingApi.withConnector { connector -> connector.useDistribution(distroZip) }
            settingsFile.touch()
        }
    
        def "tooling api reports an error when requesting a model using a gradle version that does not implement the tooling api"() {
            when:
            toolingApi.withConnection { ProjectConnection connection -> connection.getModel(GradleProject.class) }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/SingleUseDaemonClient.java

        private static final Logger LOGGER = Logging.getLogger(SingleUseDaemonClient.class);
        private final DocumentationRegistry documentationRegistry;
    
        public SingleUseDaemonClient(
            DaemonConnector connector,
            OutputEventListener outputEventListener,
            ExplainingSpec<DaemonContext> compatibilitySpec,
            InputStream buildStandardInput,
            GlobalUserInputReceiver userInput,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features/groovy/producer/build.gradle

            }
        }
    }
    
    java {
        registerFeature('mysqlSupport') {
            usingSourceSet(sourceSets.mysqlSupport)
        }
    }
    
    dependencies {
        mysqlSupportImplementation 'mysql:mysql-connector-java:8.0.14'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 05:15:51 UTC 2023
    - 425 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features/kotlin/producer/build.gradle.kts

            }
        }
    }
    
    java {
        registerFeature("mysqlSupport") {
            usingSourceSet(sourceSets["mysqlSupport"])
        }
    }
    
    dependencies {
        "mysqlSupportImplementation"("mysql:mysql-connector-java:8.0.14")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 05:15:51 UTC 2023
    - 439 bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/integTest/groovy/org/gradle/internal/remote/internal/hub/MessageHubIntegrationTest.groovy

                hub.addHandler(channel, handler)
            }
    
            def connectTo(Participant other) {
                def connector = new TestConnector()
                hub.addConnection(connector.connectionA)
                other.hub.addConnection(connector.connectionB)
            }
    
            def stop() {
                hub.stop()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/java-feature-variant/incompatible-variants/kotlin/producer/build.gradle.kts

            capability("org.gradle.demo", "producer-db-support", "1.0")
            capability("org.gradle.demo", "producer-mongo-support", "1.0")
        }
    }
    
    dependencies {
        "mysqlSupportImplementation"("mysql:mysql-connector-java:8.0.14")
        "postgresSupportImplementation"("org.postgresql:postgresql:42.2.5")
        "mongoSupportImplementation"("org.mongodb:mongodb-driver-sync:3.9.1")
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 05:16:22 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java-feature-variant/incompatible-variants/groovy/producer/build.gradle

            capability('org.gradle.demo', 'producer-db-support', '1.0')
            capability('org.gradle.demo', 'producer-mongo-support', '1.0')
        }
    }
    
    dependencies {
        mysqlSupportImplementation 'mysql:mysql-connector-java:8.0.14'
        postgresSupportImplementation 'org.postgresql:postgresql:42.2.5'
        mongoSupportImplementation 'org.mongodb:mongodb-driver-sync:3.9.1'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 05:16:22 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheServices.kt

    import org.gradle.internal.extensions.core.add
    import org.gradle.internal.nativeintegration.filesystem.FileSystem
    import org.gradle.internal.resource.connector.ResourceConnectorFactory
    import org.gradle.internal.resource.connector.ResourceConnectorSpecification
    import org.gradle.internal.resource.transfer.ExternalResourceConnector
    import org.gradle.internal.service.Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/IncomingConnector.java

         *
         * @param action the action to execute on incoming connection. The supplied action is not required to be thread-safe.
         * @param allowRemote If true, only allow connections from remote machines. If false, allow only from the local machine.
         * @return the address of the endpoint which the connector is listening on.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top