Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 968 for Remotes (0.16 sec)

  1. platforms/documentation/docs/src/snippets/buildCache/http-build-cache/groovy/settings.gradle

    rootProject.name = 'http-build-cache'
    
    // tag::http-build-cache[]
    buildCache {
        remote(HttpBuildCache) {
            url = 'https://example.com:8123/cache/'
        }
    }
    // end::http-build-cache[]
    
    // tag::allow-untrusted-server[]
    buildCache {
        remote(HttpBuildCache) {
            url = 'https://example.com:8123/cache/'
            allowUntrustedServer = true
        }
    }
    // end::allow-untrusted-server[]
    
    // tag::use-expect-continue[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 584 bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/SocketConnectCompletion.java

     * limitations under the License.
     */
    
    package org.gradle.internal.remote.internal.inet;
    
    import org.gradle.internal.remote.internal.KryoBackedMessageSerializer;
    import org.gradle.internal.remote.internal.RemoteConnection;
    import org.gradle.internal.serialize.StatefulSerializer;
    import org.gradle.internal.remote.internal.ConnectCompletion;
    
    import java.nio.channels.SocketChannel;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. prow/config/topology/multicluster-large.json

    [
      {
        "clusterName": "primary-1",
        "podSubnet": "10.10.0.0/16",
        "svcSubnet": "10.255.10.0/24",
        "network": "network-1"
      },
      {
        "clusterName": "remote",
        "podSubnet": "10.20.0.0/16",
        "svcSubnet": "10.255.20.0/24",
        "network": "network-1",
        "controlPlaneClusterName": "primary"
      },
      {
        "clusterName": "primary-2",
        "podSubnet": "10.30.0.0/16",
        "svcSubnet": "10.255.30.0/24",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 22 21:11:06 UTC 2021
    - 787 bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/version.go

    				klog.Warningf("could not obtain neither client nor remote version; fall back to: %s", constants.CurrentKubernetesVersion)
    				return kubernetesReleaseVersion(constants.CurrentKubernetesVersion.String(), fetcher)
    			}
    
    			klog.Warningf("could not obtain client version; using remote version: %s", body)
    			return kubernetesReleaseVersion(body, fetcher)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:50:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/IncomingConnector.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.remote.internal;
    
    import org.gradle.api.Action;
    import org.gradle.internal.remote.ConnectionAcceptor;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    @ServiceScope(Scope.Global.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/list_overlay.txt

    go list -overlay overlay.json -f '{{.GoFiles}}' ./dir2
    stdout '^\[h.go i.go\]$'
    
    # Overlay that removes a file from a directory
    ! go list ./dir3 # contains a file without a package statement
    go list -overlay overlay.json -f '{{.GoFiles}}' ./dir3 # overlay removes that file
    
    # Walking through an overlay
    go list -overlay overlay.json ./...
    cmp stdout want-list.txt
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 12 21:13:04 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/queue/QueueInitializer.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.remote.internal.hub.queue;
    
    import org.gradle.internal.dispatch.Dispatch;
    import org.gradle.internal.remote.internal.hub.protocol.EndOfStream;
    import org.gradle.internal.remote.internal.hub.protocol.InterHubMessage;
    
    public class QueueInitializer {
        private EndOfStream endOfStream;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part6_gradle_caching.adoc

    == Step 4. Understanding Remote Caching
    In addition to the local build cache present on a developer's machine, Gradle can make use of remote build caches which can be used by multiple developers.
    
    The idea of a remote cache is to share commonly built task outputs across remote builds to improve build times.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. samples/multicluster/README.md

        kubectl apply -f -
    ```
    
    The `CLUSTER` and `NETWORK` environment variables should match the values used to deploy the control plane
    in that cluster.
    
    ## Primary-Remote Configuration
    
    In order to give a remote cluster access to the control plane (istiod) in a primary cluster,
    we need to expose the istiod service through the east-west gateway:
    
    ```bash
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 22 16:29:16 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/InterHubMessageSerializer.java

    import org.gradle.internal.serialize.StatefulSerializer;
    import org.gradle.internal.remote.internal.hub.protocol.ChannelIdentifier;
    import org.gradle.internal.remote.internal.hub.protocol.EndOfStream;
    import org.gradle.internal.remote.internal.hub.protocol.InterHubMessage;
    
    import java.io.IOException;
    import java.util.HashMap;
    import java.util.Map;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top