Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 968 for Remotes (0.15 sec)

  1. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/MessageHubBackedServerTest.groovy

     */
    package org.gradle.internal.remote.internal.hub
    
    import org.gradle.api.Action
    import org.gradle.internal.concurrent.ExecutorFactory
    import org.gradle.internal.concurrent.ManagedExecutor
    import org.gradle.internal.remote.ConnectionAcceptor
    import org.gradle.internal.remote.ObjectConnection
    import org.gradle.internal.remote.internal.ConnectCompletion
    import org.gradle.internal.remote.internal.IncomingConnector
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/InetAddressFactoryTest.groovy

            factory.communicationAddresses == loopback
        }
    
        def "Use remote addresses if there are no loopback addresses"() {
            when:
            loopbackAddresses([])
            def remote = [ip(192, 168, 18, 256)]
            remoteAddresses(remote)
    
            then:
            factory.communicationAddresses == remote
        }
    
        def "Use 127.0.0.1 if there are no remote and no loopback addresses"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/InetAddressesTest.groovy

            !addresses.loopback.empty
        }
    
        @Requires(UnitTestPreconditions.Online)
        def "always contains at least one remote address"() {
            expect:
            !addresses.remote.empty
        }
    
        def "No remote addresses are loopback addresses"() {
            expect:
            addresses.remote.intersect(addresses.loopback).empty
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/repository/legacy/metadata/MetadataResolutionRequest.java

        /**
         * Indicates whether network access to remote repositories has been disabled.
         *
         * @return {@code true} if remote access has been disabled, {@code false} otherwise.
         */
        boolean isOffline();
    
        /**
         * Enables/disables network access to remote repositories.
         *
         * @param offline {@code true} to disable remote access, {@code false} to allow network access.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/InetAddresses.java

                            logger.debug("Ignoring remote address on loopback interface {}", candidate);
                        }
                    } else {
                        if (candidate.isLoopbackAddress()) {
                            logger.debug("Ignoring loopback address on remote interface {}", candidate);
                        } else {
                            logger.debug("Adding remote address {}", candidate);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/MessageHubBackedClientTest.groovy

     */
    package org.gradle.internal.remote.internal.hub
    
    import org.gradle.internal.concurrent.ExecutorFactory
    import org.gradle.internal.concurrent.ManagedExecutor
    import org.gradle.internal.remote.Address
    import org.gradle.internal.remote.internal.ConnectCompletion
    import org.gradle.internal.remote.internal.OutgoingConnector
    import org.gradle.internal.remote.internal.RemoteConnection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/TcpIncomingConnector.java

     */
    
    package org.gradle.internal.remote.internal.inet;
    
    import org.gradle.api.Action;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.concurrent.CompositeStoppable;
    import org.gradle.internal.concurrent.ExecutorFactory;
    import org.gradle.internal.concurrent.ManagedExecutor;
    import org.gradle.internal.id.IdGenerator;
    import org.gradle.internal.remote.Address;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/TcpOutgoingConnector.java

     * limitations under the License.
     */
    
    package org.gradle.internal.remote.internal.inet;
    
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.remote.Address;
    import org.gradle.internal.remote.internal.ConnectCompletion;
    import org.gradle.internal.remote.internal.OutgoingConnector;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.io.IOException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/buildCache/http-build-cache/kotlin/settings.gradle.kts

    rootProject.name = "http-build-cache"
    // tag::http-build-cache[]
    buildCache {
        remote<HttpBuildCache> {
            url = uri("https://example.com:8123/cache/")
        }
    }
    // end::http-build-cache[]
    
    // tag::allow-untrusted-server[]
    buildCache {
        remote<HttpBuildCache> {
            url = uri("https://example.com:8123/cache/")
            isAllowUntrustedServer = true
        }
    }
    // end::allow-untrusted-server[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 602 bytes
    - Viewed (0)
  10. cmd/tier-handlers.go

    )
    
    var (
    	// error returned when remote tier already exists
    	errTierAlreadyExists = AdminError{
    		Code:       "XMinioAdminTierAlreadyExists",
    		Message:    "Specified remote tier already exists",
    		StatusCode: http.StatusConflict,
    	}
    	// error returned when remote tier is not found
    	errTierNotFound = AdminError{
    		Code:       "XMinioAdminTierNotFound",
    		Message:    "Specified remote tier was not found",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top