Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 174 for gitRepo (0.22 sec)

  1. src/cmd/go/testdata/vcstest/git/gitrepo1.txt

    Bryan C. Mills <******@****.***> 1666708130 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.11.md

    * The GitRepo volume type is deprecated. To provision a container with a git repo, mount an `EmptyDir` into an `InitContainer` that clones the repo using git, then mount the `EmptyDir` into the Pod's container.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 328.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

      // gitRepo represents a git repository at a particular revision.
      // DEPRECATED: GitRepo is deprecated. To provision a container with a git repo, mount an
      // EmptyDir into an InitContainer that clones the repo using git, then mount the EmptyDir
      // into the Pod's container.
      // +optional
      optional GitRepoVolumeSource gitRepo = 5;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  4. pkg/apis/core/v1/zz_generated.conversion.go

    	out.AWSElasticBlockStore = (*core.AWSElasticBlockStoreVolumeSource)(unsafe.Pointer(in.AWSElasticBlockStore))
    	out.GitRepo = (*core.GitRepoVolumeSource)(unsafe.Pointer(in.GitRepo))
    	out.Secret = (*core.SecretVolumeSource)(unsafe.Pointer(in.Secret))
    	out.NFS = (*core.NFSVolumeSource)(unsafe.Pointer(in.NFS))
    	out.ISCSI = (*core.ISCSIVolumeSource)(unsafe.Pointer(in.ISCSI))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/repository/MirrorProcessorTest.java

            assertTrue(DefaultMirrorSelector.matchPattern(getRepo("a"), "a"));
            assertTrue(DefaultMirrorSelector.matchPattern(getRepo("a"), "a,"));
            assertTrue(DefaultMirrorSelector.matchPattern(getRepo("a"), ",a,"));
            assertTrue(DefaultMirrorSelector.matchPattern(getRepo("a"), "a,"));
    
            assertFalse(DefaultMirrorSelector.matchPattern(getRepo("b"), "a"));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

              },
              "gitRepo": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.core.v1.GitRepoVolumeSource"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. pkg/volume/git_repo/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package git_repo contains the internal representation of git repo volumes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 16 17:48:21 UTC 2016
    - 716 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_download_git_decorate_full.txt

    # with go1.16.14: 
    # `go1.16.14 list -m vcs-test.golang.org/git/gitrepo1.git@v1.2.3`
    # will output with error:
    # go list -m: vcs-test.golang.org/git/gitrepo1.git@v1.2.3: invalid version: unknown revision v1.2.3
    # See golang/go#51312.
    go list -m vcs-test.golang.org/git/gitrepo1.git@v1.2.3
    stdout 'vcs-test.golang.org/git/gitrepo1.git v1.2.3'
    
    -- $WORK/home/gopher/.gitconfig --
    [user]
    	name = Go Gopher
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 16:37:00 UTC 2023
    - 1011 bytes
    - Viewed (0)
  9. cmd/kubelet/app/plugins.go

    	"k8s.io/kubernetes/pkg/volume/downwardapi"
    	"k8s.io/kubernetes/pkg/volume/emptydir"
    	"k8s.io/kubernetes/pkg/volume/fc"
    	"k8s.io/kubernetes/pkg/volume/flexvolume"
    	"k8s.io/kubernetes/pkg/volume/git_repo"
    	"k8s.io/kubernetes/pkg/volume/hostpath"
    	"k8s.io/kubernetes/pkg/volume/iscsi"
    	"k8s.io/kubernetes/pkg/volume/local"
    	"k8s.io/kubernetes/pkg/volume/nfs"
    	"k8s.io/kubernetes/pkg/volume/projected"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 21:09:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesChangingModulesIntegrationTest.groovy

    import org.gradle.test.fixtures.HttpRepository
    
    abstract class ComponentMetadataRulesChangingModulesIntegrationTest extends AbstractHttpDependencyResolutionTest {
        abstract HttpRepository getRepo()
        abstract String getRepoDeclaration()
    
        def moduleA = getRepo().module('org.test', 'moduleA', '1.0')
    
        def setup() {
            moduleA.publish()
            moduleA.allowAll()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top