Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 968 for Remotes (0.11 sec)

  1. manifests/addons/dashboards/jsonnetfile.lock.json

        {
          "source": {
            "git": {
              "remote": "https://github.com/grafana/grafonnet.git",
              "subdir": "gen/grafonnet-latest"
            }
          },
          "version": "18eb4e529c60ec20ab243e2da3bcb52b2fd0d223",
          "sum": "eyuJ0jOXeA4MrobbNgU4/v5a7ASDHslHZ0eS6hDdWoI="
        },
        {
          "source": {
            "git": {
              "remote": "https://github.com/grafana/grafonnet.git",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. pkg/util/image/registry.go

    import (
    	"fmt"
    	"strings"
    
    	"github.com/google/go-containerregistry/pkg/authn"
    	"github.com/google/go-containerregistry/pkg/name"
    	"github.com/google/go-containerregistry/pkg/v1/remote"
    	"github.com/google/go-containerregistry/pkg/v1/remote/transport"
    )
    
    // Exists returns true if the image in the argument exists in a container registry.
    // The argument must be a complete image name, e.g. "gcr.io/istio-release/pilot:1.20.0".
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 25 16:28:36 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/OutgoingConnector.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.internal.remote.internal;
    
    import org.gradle.internal.remote.Address;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    @ServiceScope(Scope.Global.class)
    public interface OutgoingConnector {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/BuildCacheServicesConfiguration.java

        private final BuildCacheService remote;
        private final boolean remotePush;
    
        public BuildCacheServicesConfiguration(
            String buildPath,
            @Nullable LocalBuildCacheService local,
            boolean localPush,
            @Nullable BuildCacheService remote,
            boolean remotePush
        ) {
            this.buildPath = buildPath;
            this.remote = remote;
            this.remotePush = remotePush;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 04 08:25:00 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. 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)
  6. build-logic/idea/src/main/kotlin/gradlebuild.ide.gradle.kts

                }
            }
        }
    }
    
    fun ProjectSettings.configureRunConfigurations() {
        runConfigurations {
            create<Remote>("Remote debug port 5005") {
                mode = Remote.RemoteMode.ATTACH
                transport = Remote.RemoteTransport.SOCKET
                sharedMemoryAddress = "javadebug"
                host = "localhost"
                port = 5005
            }
        }
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 26 15:42:59 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. pkg/kubelet/container/testing/os.go

    }
    
    // Remove is a fake call that returns nil.
    func (f *FakeOS) Remove(path string) error {
    	f.Removes = append(f.Removes, path)
    	return nil
    }
    
    // RemoveAll is a fake call that just returns nil.
    func (f *FakeOS) RemoveAll(path string) error {
    	f.Removes = append(f.Removes, path)
    	return nil
    }
    
    // Create is a fake call that creates a virtual file and returns nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 07 13:37:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. src/net/interface_linux_test.go

    	})
    	ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
    		Path: xname,
    		Args: []string{"ip", "address", "add", ti.local, "peer", ti.remote, "dev", ti.name},
    	})
    	ti.teardownCmds = append(ti.teardownCmds, &exec.Cmd{
    		Path: xname,
    		Args: []string{"ip", "address", "del", ti.local, "peer", ti.remote, "dev", ti.name},
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 06 00:05:32 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/caching/configuration/internal/BuildCacheConfigurationIntegrationTest.groovy

                    remote(CustomBuildCache)
                    remote(AnotherBuildCache)
                }
    
                gradle.rootProject {
                    tasks.register('verifyBuildCache') {
                        doLast {
                            def buildCache = services.get(BuildCacheConfiguration)
                            assert buildCache.remote instanceof AnotherBuildCache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 19 20:09:35 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  10. 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)
Back to top