Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 172 for getRepo (0.23 sec)

  1. staging/src/k8s.io/api/core/v1/types.go

    	// 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
    	GitRepo *GitRepoVolumeSource `json:"gitRepo,omitempty" protobuf:"bytes,5,opt,name=gitRepo"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  2. pkg/apis/core/zz_generated.deepcopy.go

    	}
    	if in.AWSElasticBlockStore != nil {
    		in, out := &in.AWSElasticBlockStore, &out.AWSElasticBlockStore
    		*out = new(AWSElasticBlockStoreVolumeSource)
    		**out = **in
    	}
    	if in.GitRepo != nil {
    		in, out := &in.GitRepo, &out.GitRepo
    		*out = new(GitRepoVolumeSource)
    		**out = **in
    	}
    	if in.Secret != nil {
    		in, out := &in.Secret, &out.Secret
    		*out = new(SecretVolumeSource)
    		(*in).DeepCopyInto(*out)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    	}
    	if in.AWSElasticBlockStore != nil {
    		in, out := &in.AWSElasticBlockStore, &out.AWSElasticBlockStore
    		*out = new(AWSElasticBlockStoreVolumeSource)
    		**out = **in
    	}
    	if in.GitRepo != nil {
    		in, out := &in.GitRepo, &out.GitRepo
    		*out = new(GitRepoVolumeSource)
    		**out = **in
    	}
    	if in.Secret != nil {
    		in, out := &in.Secret, &out.Secret
    		*out = new(SecretVolumeSource)
    		(*in).DeepCopyInto(*out)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  4. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. pkg/apis/core/types.go

    	// +optional
    	AWSElasticBlockStore *AWSElasticBlockStoreVolumeSource
    	// 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
    	GitRepo *GitRepoVolumeSource
    	// Secret represents a secret that should populate this volume.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"gitRepo":               "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.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/lite/transforms/optimize.cc

          SmallVector<APFloat, 4> new_bias_values;
          if (mlir::isa<NoneType>(bias.getType())) {  // none bias, a list of zeros
            new_bias_values.resize(bias_size,
                                   APFloat::getZero(cst_value.getSemantics()));
          } else if (bias_cst.getNumElements() == 1) {  // scalar bias, broadcast it
            new_bias_values.resize(bias_size, *bias_cst.value_begin<APFloat>());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. 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)
Back to top