Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 286 for Remotes (0.17 sec)

  1. docker-buildx.sh

    #!/bin/bash
    
    sudo sysctl net.ipv6.conf.all.disable_ipv6=0
    
    remote=$(git remote get-url upstream)
    if test "$remote" != "******@****.***:minio/minio.git"; then
    	echo "Script requires that the 'upstream' remote is set to ******@****.***:minio/minio.git"
    	exit 1
    fi
    
    git remote update upstream && git checkout master && git rebase upstream/master
    
    release=$(git describe --abbrev=0 --tags)
    
    docker buildx build --push --no-cache \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/caching/internal/services/DefaultBuildCacheControllerFactory.java

        ) {
            boolean localPush = local != null && local.config.isPush();
            boolean remotePush = remote != null && remote.config.isPush();
            return new BuildCacheServicesConfiguration(
                buildPath.getPath(),
                local != null ? local.service : null, localPush,
                remote != null ? remote.service : null, remotePush);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 17:08:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. tests/integration/pilot/locality_test.go

    						Local:           destA.Config().Service,
    						Remote:          destB.Config().Service,
    					},
    					expectAllTrafficTo(destA.Config().Service),
    				},
    				{
    					"Prioritized/EDS",
    					LocalityInput{
    						LocalitySetting: localityFailover,
    						Resolution:      "STATIC",
    						Local:           destB.Address(),
    						Remote:          destA.Address(),
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K 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. 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)
  7. tensorflow/c/eager/immediate_execution_distributed_manager.h

      // Set up distributed execution environment on local and remote tasks.
      // When `reset_context` is true, initialize new cluster context state based
      // on cluster configurations provided in `server_def`; otherwise, update
      // existing context state with the provided `server_def`. Contexts created
      // on remote tasks will be considered stale and garbage collected after
      // `keep_alive_secs` of inactivity.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 22:37:46 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. pilot/pkg/leaderelection/leaderelection.go

    }
    
    func NewLeaderElectionMulticluster(namespace, name, electionID, revision string, remote bool, client kube.Client) *LeaderElection {
    	return newLeaderElection(namespace, name, electionID, revision, false, remote, client)
    }
    
    func newLeaderElection(namespace, name, electionID, revision string, perRevision bool, remote bool, client kube.Client) *LeaderElection {
    	var watcher revisions.DefaultWatcher
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r35/CacheableTaskProgressEventsCrossVersionSpec.groovy

            TestFile localCache = file('local-cache')
            TestFile remoteCache = file('remote-cache')
            settingsFile.text = """
                buildCache {
                    local {
                        directory = '${localCache.absoluteFile.toURI()}'
                        push = true
                    }
                    remote(DirectoryBuildCache) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DefaultDaemonConnectorTest.groovy

    import org.gradle.internal.logging.progress.ProgressLoggerFactory
    import org.gradle.internal.remote.Address
    import org.gradle.internal.remote.internal.ConnectCompletion
    import org.gradle.internal.remote.internal.ConnectException
    import org.gradle.internal.remote.internal.OutgoingConnector
    import org.gradle.internal.remote.internal.RemoteConnection
    import org.gradle.internal.serialize.Serializer
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top