Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 286 for Remotes (0.12 sec)

  1. src/os/path.go

    		// double-checking that directory doesn't exist.
    		dir, err1 := Lstat(path)
    		if err1 == nil && dir.IsDir() {
    			return nil
    		}
    		return err
    	}
    	return nil
    }
    
    // RemoveAll removes path and any children it contains.
    // It removes everything it can but returns the first error
    // it encounters. If the path does not exist, RemoveAll
    // returns nil (no error).
    // If there is an error, it will be of type [*PathError].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerRetryTest.groovy

            throwWhen(new IOException("Could not dispatch a message to the daemon.", new IOException("An existing connection was forcibly closed by the remote host")), iteration == 1)
    
            then:
            def ioe = thrown(IOException)
            ioe.cause?.message == "An existing connection was forcibly closed by the remote host"
        }
    
        @Requires([
            UnitTestPreconditions.Windows,
            UnitTestPreconditions.Jdk7OrLater,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 15:10:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/fixture/CrossVersionToolingApiSpecificationRetryTest.groovy

            throwWhen(new IOException("Could not dispatch a message to the daemon.", new IOException("An existing connection was forcibly closed by the remote host")), iteration == 1)
    
            then:
            IOException ioe = thrown()
            ioe.cause?.message == "An existing connection was forcibly closed by the remote host"
        }
    
        @Requires([
            UnitTestPreconditions.Windows,
            UnitTestPreconditions.Jdk7OrLater,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DaemonClientConnection.java

     */
    package org.gradle.launcher.daemon.client;
    
    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    import org.gradle.internal.remote.internal.Connection;
    import org.gradle.internal.remote.internal.MessageIOException;
    import org.gradle.internal.remote.internal.RemoteConnection;
    import org.gradle.launcher.daemon.context.DaemonConnectDetails;
    import org.gradle.launcher.daemon.protocol.Message;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 06:43:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonStartupCommunication.java

    import org.gradle.api.UncheckedIOException;
    import org.gradle.api.logging.Logger;
    import org.gradle.api.logging.Logging;
    import org.gradle.internal.remote.Address;
    import org.gradle.internal.remote.internal.inet.MultiChoiceAddress;
    import org.gradle.internal.remote.internal.inet.MultiChoiceAddressSerializer;
    import org.gradle.internal.serialize.Decoder;
    import org.gradle.internal.serialize.FlushableEncoder;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/project/LegacyLocalRepositoryManager.java

            String path;
    
            Metadata metadata = request.getMetadata();
            String context = request.getContext();
            RemoteRepository remote = request.getRepository();
    
            if (remote != null) {
                path = getPathForRemoteMetadata(metadata, remote, context);
            } else {
                path = getPathForLocalMetadata(metadata);
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/caching/configuration/internal/BuildCacheConfigurationInternal.java

        /**
         * Replaces local directory build cache.
         */
        void setLocal(DirectoryBuildCache local);
    
        /**
         * Replaces remote build cache.
         */
        void setRemote(@Nullable BuildCache remote);
    
        /**
         * Gets build cache service registrations
         */
        Set<BuildCacheServiceRegistration> getRegistrations();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. tests/integration/pilot/multicluster_test.go

    			if len(t.Clusters().Primaries()) == 0 {
    				t.Skip("no primary cluster in framework (most likely only remote-config)")
    			}
    
    			// we don't need to test this per-cluster
    			primary := t.Clusters().Primaries()[0]
    			// it doesn't matter if the other cluster is a primary/remote/etc.
    			remote := t.Clusters().Exclude(primary)[0]
    
    			var (
    				ns  = i.Settings().SystemNamespace
    				sa  = "istio-reader-no-perms"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. internal/crypto/metadata.go

    // and the S3 multipart API.
    func IsMultiPart(metadata map[string]string) bool {
    	if _, ok := metadata[MetaMultipart]; ok {
    		return true
    	}
    	return false
    }
    
    // RemoveSensitiveEntries removes confidential encryption
    // information - e.g. the SSE-C key - from the metadata map.
    // It has the same semantics as RemoveSensitiveHeaders.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/project/LegacyLocalRepositoryManager.java

            String path;
    
            Metadata metadata = request.getMetadata();
            String context = request.getContext();
            RemoteRepository remote = request.getRepository();
    
            if (remote != null) {
                path = getPathForRemoteMetadata(metadata, remote, context);
            } else {
                path = getPathForLocalMetadata(metadata);
            }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top