Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 172 for getRepo (1.77 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/core.v1.Pod.yaml

          datasetName: datasetNameValue
          datasetUUID: datasetUUIDValue
        gcePersistentDisk:
          fsType: fsTypeValue
          partition: 3
          pdName: pdNameValue
          readOnly: true
        gitRepo:
          directory: directoryValue
          repository: repositoryValue
          revision: revisionValue
        glusterfs:
          endpoints: endpointsValue
          path: pathValue
          readOnly: true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.CronJob.yaml

                gcePersistentDisk:
                  fsType: fsTypeValue
                  partition: 3
                  pdName: pdNameValue
                  readOnly: true
                gitRepo:
                  directory: directoryValue
                  repository: repositoryValue
                  revision: revisionValue
                glusterfs:
                  endpoints: endpointsValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1beta1.CronJob.yaml

                gcePersistentDisk:
                  fsType: fsTypeValue
                  partition: 3
                  pdName: pdNameValue
                  readOnly: true
                gitRepo:
                  directory: directoryValue
                  repository: repositoryValue
                  revision: revisionValue
                glusterfs:
                  endpoints: endpointsValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.StatefulSet.yaml

              datasetUUID: datasetUUIDValue
            gcePersistentDisk:
              fsType: fsTypeValue
              partition: 3
              pdName: pdNameValue
              readOnly: true
            gitRepo:
              directory: directoryValue
              repository: repositoryValue
              revision: revisionValue
            glusterfs:
              endpoints: endpointsValue
              path: pathValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta1.StatefulSet.yaml

              datasetUUID: datasetUUIDValue
            gcePersistentDisk:
              fsType: fsTypeValue
              partition: 3
              pdName: pdNameValue
              readOnly: true
            gitRepo:
              directory: directoryValue
              repository: repositoryValue
              revision: revisionValue
            glusterfs:
              endpoints: endpointsValue
              path: pathValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/coderepo_test.go

    	// could not be fetched. Since this test isn't executing any of the resolved
    	// code, bypass the sum database.
    	cfg.GOSUMDB = "off"
    
    	dir, err := os.MkdirTemp("", "gitrepo-test-")
    	if err != nil {
    		return err
    	}
    	defer func() {
    		if rmErr := os.RemoveAll(dir); err == nil {
    			err = rmErr
    		}
    	}()
    
    	cfg.GOMODCACHE = filepath.Join(dir, "modcache")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 20:10:14 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation_test.go

    			name: "GitRepo contains ..",
    			vol: core.Volume{
    				Name: "gitrepo",
    				VolumeSource: core.VolumeSource{
    					GitRepo: &core.GitRepoVolumeSource{
    						Repository: "foo",
    						Directory:  "dots/../bar",
    					},
    				},
    			},
    			errs: []verr{{
    				etype:  field.ErrorTypeInvalid,
    				field:  "gitRepo.directory",
    				detail: `must not contain '..'`,
    			}},
    		}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  8. pkg/volume/util/util.go

    // Local means the volume is using storage from the local disk that is managed by kubelet.
    // Ephemeral means the lifecycle of the volume is the same as the Pod.
    func IsLocalEphemeralVolume(volume v1.Volume) bool {
    	return volume.GitRepo != nil ||
    		(volume.EmptyDir != nil && volume.EmptyDir.Medium == v1.StorageMediumDefault) ||
    		volume.ConfigMap != nil
    }
    
    // GetLocalPersistentVolumeNodeNames returns the node affinity node name(s) for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation.go

    		}
    	}
    	if source.GitRepo != nil {
    		if numVolumes > 0 {
    			allErrs = append(allErrs, field.Forbidden(fldPath.Child("gitRepo"), "may not specify more than 1 volume type"))
    		} else {
    			numVolumes++
    			allErrs = append(allErrs, validateGitRepoVolumeSource(source.GitRepo, fldPath.Child("gitRepo"))...)
    		}
    	}
    	if source.GCEPersistentDisk != nil {
    		if numVolumes > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            },
            "gitRepo": {
              "$ref": "#/definitions/io.k8s.api.core.v1.GitRepoVolumeSource",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top