Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 326 for Remotes (0.34 sec)

  1. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/artifact/MavenArtifactProperties.java

         * verify the path and resolve the artifact if the path actually denotes an existing file. If the path isn't valid,
         * resolution will fail and no attempts to search local/remote repositories are made.
         */
        public static final String LOCAL_PATH = "localPath";
    
        private MavenArtifactProperties() {
            // hide constructor
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. pilot/pkg/xds/endpoints/ep_filters.go

    	// Spread the weight across the gateways.
    	weightPerGateway := weight / uint32(len(gateways))
    	for _, gateway := range gateways {
    		gatewayWeights[gateway] += weightPerGateway
    	}
    }
    
    // EndpointsWithMTLSFilter removes all endpoints that do not handle mTLS. This is determined by looking at
    // auto-mTLS, DestinationRule, and PeerAuthentication to determine if we would send mTLS to these endpoints.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonInitialCommunicationFailureIntegrationSpec.groovy

            analyzer.daemons.size() == 2        //2 daemon participated
            analyzer.visible.size() == 1        //only one address in the registry
        }
    
        @Issue("GRADLE-2464")
        def "stop removes entry when nothing is listening on address"() {
            when:
            buildSucceeds()
    
            then:
            def daemon = daemons.daemon
    
            when:
            daemon.assertIdle()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 07:46:29 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache/src/test/groovy/org/gradle/caching/internal/controller/DefaultBuildCacheControllerTest.groovy

            controller.load(key, cacheableEntity)
    
            then:
            1 * remote.store(key, _) >> { BuildCacheKey key, BuildCacheEntryWriter writer ->
                throw new RuntimeException()
            }
            0 * remote.load(key, _)
            0 * remote.store(key, _)
        }
    
        def "does not stop calling remote on read error if disable-on-error disabled"() {
            local = null
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/caching/internal/controller/DefaultBuildCacheControllerFactoryTest.groovy

            config.remote(TestRemoteBuildCache).enabled = false
    
            when:
            def c = createController()
    
            then:
            c.local.service != null
            c.remote.service == null
            with(buildOpResult()) {
                local.type == "directory"
                local.className == DirectoryBuildCache.name
                remote == null
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:46:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/services/MessagingServices.java

     */
    
    package org.gradle.internal.remote.services;
    
    import org.gradle.internal.concurrent.ExecutorFactory;
    import org.gradle.internal.id.IdGenerator;
    import org.gradle.internal.id.UUIDGenerator;
    import org.gradle.internal.remote.MessagingClient;
    import org.gradle.internal.remote.MessagingServer;
    import org.gradle.internal.remote.internal.IncomingConnector;
    import org.gradle.internal.remote.internal.OutgoingConnector;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/multicluster_test.go

    	// Create the multicluster secret. Sleep to allow created remote
    	// controller to start and callback add function to be called.
    	err := createMultiClusterSecret(clientset, "test-secret-1", "test-remote-cluster-1")
    	if err != nil {
    		t.Fatalf("Unexpected error on secret create: %v", err)
    	}
    
    	// Test - Verify that the remote controller has been added.
    	verifyControllers(t, mc, 2, "create remote controller")
    
    	// Delete the mulicluster secret.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheRemoteBuildScriptIntegrationTest.groovy

        String scriptUrl
        TestFile scriptFile
        String scriptName = "remote-script.gradle"
        def configurationCache
    
        def setup() {
            server.start()
    
            scriptUrl = "${server.uri}/${scriptName}"
            scriptFile = file("remote-script.gradle") << """
                println 'loaded remote script'
            """
            server.expectGet "/$scriptName", scriptFile
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. 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)
  10. platforms/core-execution/build-cache-local/src/integTest/groovy/org/gradle/caching/BuildCacheLocalCacheIntegrationTest.groovy

            cached()
            localCache.hasCacheEntry(cacheKey)
    
            when:
            settingsFile << """
                buildCache.remote.enabled = false
            """
            assert remoteCache.cacheDir.deleteDir()
            execute()
    
            then:
            cached()
        }
    
        def "remote loads are not cached locally if local cache is #state"() {
            given:
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top